isHuaweiServiceAvailable property

Future<bool?> isHuaweiServiceAvailable

Method Channel to check Huawei HMS Service

Implementation

static Future<bool?> get isHuaweiServiceAvailable async {
  final bool? service =
      await _channel.invokeMethod('isHuaweiServiceAvailable');
  return service;
}