FollyCell constructor

const FollyCell({
  1. required Widget child,
  2. required EdgeInsets padding,
  3. AlignmentGeometry align = Alignment.centerLeft,
  4. Color color = Colors.transparent,
  5. Key? key,
})

Implementation

const FollyCell({
  required this.child,
  required this.padding,
  this.align = Alignment.centerLeft,
  this.color = Colors.transparent,
  super.key,
});