CardSettingsField constructor
CardSettingsField({
- String label = 'Label',
- required Widget content,
- Icon? icon,
- IconData? pickerIcon,
- double? labelWidth,
- bool contentOnNewLine = false,
- String? unitLabel,
- String? errorText,
- bool visible = true,
- required TextAlign? labelAlign,
- required Widget? requiredIndicator,
- bool enabled = true,
- required EdgeInsetsGeometry? fieldPadding,
Implementation
CardSettingsField({
this.label: 'Label',
required this.content,
this.icon,
this.pickerIcon,
this.labelWidth,
this.contentOnNewLine = false,
this.unitLabel,
this.errorText,
this.visible: true,
required this.labelAlign,
required this.requiredIndicator,
this.enabled = true,
required this.fieldPadding,
});