checkMockLocation method
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;
}