reservationStateControl property

FormControl<ReservationState>? get reservationStateControl

Implementation

FormControl<ReservationState>? get reservationStateControl =>
    containsReservationState
        ? form.control(reservationStateControlPath())
            as FormControl<ReservationState>?
        : null;