FcCell constructor

const FcCell({
  1. Key? key,
  2. VoidCallback? onPressed,
  3. EdgeInsets? padding,
  4. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.start,
  5. required Widget label,
  6. Widget? content,
  7. Alignment contentAlignment = Alignment.centerRight,
  8. bool arrow = true,
  9. Widget? extra,
  10. bool border = true,
})

Implementation

const FcCell({
  Key? key,
  this.onPressed,
  this.padding,
  this.crossAxisAlignment = CrossAxisAlignment.start,
  required this.label,
  this.content,
  this.contentAlignment = Alignment.centerRight,
  this.arrow = true,
  this.extra,
  this.border = true,
}) : super(key: key);