MinInputStyle constructor

const MinInputStyle({
  1. required BoxDecoration idle,
  2. required BoxDecoration focused,
  3. required BoxDecoration error,
  4. required BoxDecoration disabled,
  5. Color? foregroundColor,
  6. Color? disabledForegroundColor,
  7. Color? placeholderColor,
  8. EdgeInsets? contentPadding,
})

Implementation

const MinInputStyle({
  required this.idle,
  required this.focused,
  required this.error,
  required this.disabled,
  this.foregroundColor,
  this.disabledForegroundColor,
  this.placeholderColor,
  this.contentPadding,
});