notBeforeInMinutes property

  1. @ActualInt32()
int? get notBeforeInMinutes

Implementation

@ActualInt32() int? get notBeforeInMinutes => _notBeforeInMinutes;
  1. @ActualInt32()
set notBeforeInMinutes (int? value)

Implementation

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