pendingFrom property

  1. @ActualInt32()
int? get pendingFrom

Implementation

@ActualInt32() int? get pendingFrom => _pendingFrom;
  1. @ActualInt32()
set pendingFrom (int? value)

Implementation

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