modified property

  1. @ActualInt32()
int get modified

Implementation

@ActualInt32() int get modified => _modified;
  1. @ActualInt32()
set modified (int value)

Implementation

@ActualInt32() set modified(int value) {
	if (value > 2147483647) {
		throw ArgumentError('modified value cannot exceed 2147483647');
	}
	_modified = value;
}