FRawItemContentStyle constructor

FRawItemContentStyle({
  1. required FWidgetStateMap<IconThemeData> prefixIconStyle,
  2. required FWidgetStateMap<TextStyle> childTextStyle,
  3. EdgeInsetsGeometry padding = const EdgeInsetsDirectional.only(start: 15, top: 7.5, bottom: 7.5, end: 10),
  4. double prefixIconSpacing = 10,
})

Implementation

FRawItemContentStyle({
  required this.prefixIconStyle,
  required this.childTextStyle,
  this.padding = const EdgeInsetsDirectional.only(start: 15, top: 7.5, bottom: 7.5, end: 10),
  this.prefixIconSpacing = 10,
}) : assert(0 <= prefixIconSpacing, 'prefixIconSpacing ($prefixIconSpacing) must be >= 0');