FcCell constructor

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

Implementation

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