cancelPatientInterventionReason property
int?
get
cancelPatientInterventionReason
override
Implementation
@ActualInt32() @override int? get cancelPatientInterventionReason => _cancelPatientInterventionReason;
set
cancelPatientInterventionReason
(int? value)
override
Implementation
@ActualInt32() @override set cancelPatientInterventionReason(int? value) {
if (value != null && value > 2147483647) {
throw ArgumentError('cancelPatientInterventionReason value cannot exceed 2147483647');
}
_cancelPatientInterventionReason = value;
}