InputStyle.custom constructor

const InputStyle.custom({
  1. required Map<String, String> base,
  2. Map<String, String> focus = const {},
  3. Map<String, String> error = const {},
  4. Map<String, String> disabled = const {},
})

Create a custom input style

Implementation

const InputStyle.custom({
  required this.base,
  this.focus = const {},
  this.error = const {},
  this.disabled = const {},
});