FollyCell.empty constructor

const FollyCell.empty({
  1. Color color = Colors.transparent,
  2. EdgeInsets padding = EdgeInsets.zero,
  3. Key? key,
})

Implementation

const FollyCell.empty({
  this.color = Colors.transparent,
  this.padding = EdgeInsets.zero,
  super.key,
})  : align = Alignment.center,
      child = const SizedBox.shrink();