FcCell constructor
const
FcCell({
- Key? key,
- VoidCallback? onPressed,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.start,
- required Widget label,
- Widget? content,
- Alignment contentAlignment = Alignment.centerRight,
- bool arrow = true,
- Widget? extra,
- 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);