Line data Source code
1 : /// An exception thrown when trying to access the device's location 2 : /// information while the location service on the device is disabled. 3 : class LocationServiceDisabledException implements Exception { 4 : /// Constructs the [LocationServiceDisabledException] 5 2 : const LocationServiceDisabledException(); 6 : 7 1 : @override 8 : String toString() => 'The location service on the device is disabled.'; 9 : }