launchNotification property

  1. @override
PushNotificationMessage? get launchNotification

Implementation

@override
PushNotificationMessage? get launchNotification {
  if (!_isConfigured) {
    throw _needsConfigurationException;
  }
  final result = _launchNotification;
  _launchNotification = null;
  return result;
}