setPushToken static method

Future<void> setPushToken(
  1. String value
)

Set the FCM Token for Push Notifications

Implementation

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