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