KfInputField constructor

const KfInputField({
  1. required String id,
  2. required String type,
  3. required String label,
  4. bool required = false,
  5. List<String> options = const [],
  6. bool isKpStandard = false,
})

Implementation

const KfInputField({
  required this.id,
  required this.type,
  required this.label,
  this.required = false,
  this.options = const [],
  this.isKpStandard = false,
});