FormField.bool constructor Null safety

const FormField.bool(
  1. {required String key,
  2. String? description,
  3. bool? value}
)

Implementation

const factory FormField.bool({
  required String key,
  String? description,
  bool? value,
}) = FormBoolField;