register method

Future<void> register(
  1. String instance,
  2. List<String> features,
  3. String? messageForDistributor,
  4. String? vapid,
)

Register the app to the saved distributor with a specified token identified with the instance parameter This method needs to be called at every app startup with the same distributor and token.

Implementation

Future<void> register(String instance, List<String> features,
    String? messageForDistributor, String? vapid) {
  throw UnimplementedError('registerApp has not been implemented.');
}