const
FieldChoiceChip(- {bool? autofocus,
- required String? type,
- String? avatar,
- String? avatarBorder,
- String? backgroundColor,
- String? clipBehavior,
- String? disabledColor,
- double? elevation,
- String? focusNode,
- bool? isEnabled,
- String? label,
- String? labelPadding,
- String? labelStyle,
- String? materialTapTargetSize,
- String? onSelected,
- Map<String, dynamic>? choices,
- String? padding,
- double? pressElevation,
- bool? selected,
- String? selectedColor,
- String? selectedShadowColor,
- double? sequence,
- String? shadowColor,
- String? shape,
- String? side,
- String? tooltip,
- String? visulalDensity}
)
Implementation
const FieldChoiceChip({
/// Boolean value.
this.autofocus,
required this.type,
/// Widget to display as the avatar.
/// specified within quotes.
this.avatar,
/// Border to draw around the avatar.
/// ex: 'BoxBorder.all(width: 2.0, color: Colors.grey.shade400)'
this.avatarBorder,
/// Background color of the chip.
/// specified within quotes.
this.backgroundColor,
/// How to clip the chip's content.
/// ex:'Clip.none'
this.clipBehavior,
this.disabledColor,
/// integer value
/// ex: 5
this.elevation,
this.focusNode,
/// Boolean value. Default is 'true'.
this.isEnabled,
this.label,
this.labelPadding,
this.labelStyle,
this.materialTapTargetSize,
this.onSelected,
this.choices,
this.padding,
this.pressElevation,
this.selected,
this.selectedColor,
this.selectedShadowColor,
this.sequence,
this.shadowColor,
this.shape,
this.side,
this.tooltip,
this.visulalDensity,
});