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