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