convention property

  1. @ActualInt32()
int? get convention

Implementation

@ActualInt32() int? get convention => _convention;
  1. @ActualInt32()
set convention (int? value)

Implementation

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