processPushCompletion method

Future<void> processPushCompletion()

Process completion received with push notification.

Implementation

Future<void> processPushCompletion() async {
  try {
    String method = 'processPushCompletion';
    await _methodChannel.invokeMethod('$_PLUGIN.$method');
    _FCXLog._i(runtimeType, '$method done');
  } on PlatformException catch (e) {
    _FCXLog._w(runtimeType, e.message);
  }
}