getIOSGeTuiLaunchNotification function

Future<Map?> getIOSGeTuiLaunchNotification()

only ios

Implementation

Future<Map<dynamic, dynamic>?> getIOSGeTuiLaunchNotification() async {
  if (_isIOS) return await _channel.invokeMethod('getLaunchNotification');
  return null;
}