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