docSeq property

  1. @ActualInt32()
int? get docSeq

Implementation

@ActualInt32() int? get docSeq => _docSeq;
  1. @ActualInt32()
set docSeq (int? value)

Implementation

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