init method

Future<bool> init(
  1. dynamic backgroundMessageHandler(
    1. Map
    ), [
  2. String title = "Pushed",
  3. String body = "The service active"
])

Implementation

Future<bool> init(Function(Map<dynamic, dynamic>) backgroundMessageHandler,
    [String title = "Pushed", String body = "The service active"]) {
  throw UnimplementedError('init() has not been implemented.');
}