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