notificationSettings method

Future<NotificationSettings> notificationSettings()

Implementation

Future<NotificationSettings> notificationSettings() async {
  Map<dynamic, dynamic>? notificationSettings =
      await _channel.invokeMethod('config.notificationSettings');
  if (notificationSettings == null) {
    throw TypeError();
  }
  return NotificationSettings.fromMap(notificationSettings);
}