transplantationCode property

  1. @ActualInt32()
  2. @override
int? get transplantationCode
override

Implementation

@ActualInt32() @override int? get transplantationCode => _transplantationCode;
  1. @ActualInt32()
  2. @override
set transplantationCode (int? value)
override

Implementation

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