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