setHuaweiPushToken static method

Future<void> setHuaweiPushToken(
  1. String value
)

Set the Huawei Token for Push Notifications

Implementation

static Future<void> setHuaweiPushToken(String value) async {
  return await _dartToNativeMethodChannel
      .invokeMethod('setHuaweiPushToken', {'token': value});
}