isGoogleServicesAvailable method
Implementation
@override
Future<bool> isGoogleServicesAvailable() async {
if (Platform.isAndroid) {
final result =
await methodChannel.invokeMethod<bool>('isGoogleServicesAvailable');
return result ?? false;
}else{
return false;
}
}