setEnabled method

Future<Map<String, dynamic>?> setEnabled({
  1. required bool enabled,
})

Enable or disable custom audio notifications

Implementation

Future<Map<String, dynamic>?> setEnabled({
  required bool enabled,
}) async {
  return NotificationAudioPluginPlatform.instance.setEnabled(enabled: enabled);
}