Element constructor

Element({
  1. required String fieldType,
  2. required String name,
  3. String? label,
  4. String? value,
  5. String? placeholder,
  6. String? align,
  7. bool? visibility,
  8. String? mask,
})

Implementation

factory Element({
  required String fieldType,
  required String name,
  String? label,
  String? value,
  String? placeholder,
  String? align,
  bool? visibility,
  String? mask,
}) = _Element;