status property
Implementation
@ActualInt32() @override int get status => _status;
Implementation
@ActualInt32() @override set status(int value) {
if (value > 2147483647) {
throw ArgumentError('status value cannot exceed 2147483647');
}
_status = value;
}