LionInput constructor

LionInput({
  1. Key? key,
  2. required String label,
  3. required String value,
  4. required dynamic onChanged(
    1. String
    ),
  5. bool disabled = false,
  6. String? validator(
    1. String?
    )?,
})

Implementation

LionInput({
  super.key,
  required this.label,
  required this.value,
  required this.onChanged,
  this.disabled = false,
  this.validator,
});