isFakeLocation method
Calculates the distance between the supplied coordinates in meters.
Return bool true if fake location detected, otherwise it will return false
Implementation
@override
Future<bool> isFakeLocation() async {
final isFakeLocation1 = await DetectFakeLocation().detectFakeLocation();
final isFakeLocation2 = await SafeDevice.isMockLocation;
return isFakeLocation1 || isFakeLocation2;
}