notificationInit method

  1. @override
Future notificationInit(
  1. String notixAppId,
  2. String notixToken
)
override

Implementation

@override
Future<dynamic> notificationInit(String notixAppId, String notixToken) async {
  final response = await methodChannel.invokeMethod("notixNotificationInit",
      {"notixAppId": notixAppId, "notixToken": notixToken});
  log(response.toString());
}