setPushRegistrationToken static method

void setPushRegistrationToken(
  1. String token
)

Allows you to configure the FCM Registration token for the user (Android)

Implementation

static void setPushRegistrationToken(String token) async {
  await _channel.invokeMethod('setPushRegistrationToken', <String, String>{
    'token': token,
  });
}