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