registerForRemoteNotifications static method

Future<void> registerForRemoteNotifications(
  1. bool enabled
)

Implementation

static Future<void> registerForRemoteNotifications(bool enabled) async {
  return await _channel.invokeMethod(
      "dEngage#registerForRemoteNotifications", {'enabled': enabled});
}