checkMockLocation method

  1. @override
Future<bool> checkMockLocation({
  1. bool strictMode = true,
})
override

Checks mock location status with optional strict mode.

Implementation

@override
Future<bool> checkMockLocation({bool strictMode = true}) async {
  final bool result = await _channel.invokeMethod('isMockLocation', {
    'strictMode': strictMode,
  });
  return result;
}