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