setDefaultNotificationSound method

  1. @override
Future setDefaultNotificationSound()
override

Implementation

@override
setDefaultNotificationSound() async {
  try {
    await mirrorFlyMethodChannel.invokeMethod('setDefaultNotificationSound');
  } on PlatformException catch (e) {
    debugPrint("Platform Exception ===> $e");
    rethrow;
  } on Exception catch (error) {
    debugPrint("Exception ==> $error");
    rethrow;
  }
}