registerPushMessageNotificationCallback method

Future registerPushMessageNotificationCallback ()

register push message notification callback

Implementation

Future<dynamic> registerPushMessageNotificationCallback() async {
  var result = await _methodChannel
      .invokeMethod('registerPushMessageNotificationCallback');
  return result;
}