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