FFormFieldStyle constructor

const FFormFieldStyle({
  1. required FWidgetStateMap<TextStyle> labelTextStyle,
  2. required FWidgetStateMap<TextStyle> descriptionTextStyle,
  3. required TextStyle errorTextStyle,
})

Creates a FFormFieldStyle.

Implementation

const FFormFieldStyle({
  required this.labelTextStyle,
  required this.descriptionTextStyle,
  required this.errorTextStyle,
});