isLocationServiceEnabled method

  1. @override
Future<bool> isLocationServiceEnabled()
override

Whether the system location toggle is currently on.

Implementation

@override
Future<bool> isLocationServiceEnabled() async {
  return await _invokeOptional<bool>('isLocationServiceEnabled') ?? true;
}