decimal property

  1. @ActualInt32()
int? get decimal

Implementation

@ActualInt32() int? get decimal => _decimal;
  1. @ActualInt32()
set decimal (int? value)

Implementation

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