notAfterInMinutes property

  1. @ActualInt32()
int? get notAfterInMinutes

Implementation

@ActualInt32() int? get notAfterInMinutes => _notAfterInMinutes;
  1. @ActualInt32()
set notAfterInMinutes (int? value)

Implementation

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