errorCount property

  1. @ActualInt32()
int? get errorCount

Implementation

@ActualInt32() int? get errorCount => _errorCount;
  1. @ActualInt32()
set errorCount (int? value)

Implementation

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