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