isLocationServiceEnabled method

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

Returns a Future containing a bool value indicating whether location services are enabled on the device.

This will always return true on the web as the web platform doesn't know the concept of a separate location service which has to be enabled.

Implementation

@override
Future<bool> isLocationServiceEnabled() => Future.value(true);