buildForm method
FormGroup
buildForm()
Implementation
FormGroup buildForm() {
return fb.group(<String, Object>{
_dataOfRefusalKey:
FormControl<DateTime>(value: DateTime.now(), validators: []),
_reasonOfRefusal:
FormControl<String>(value: null, validators: [Validators.required]),
_deliveryCommentKey: FormControl<String>(value: null),
});
}