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