showCustomTones method
Implementation
@override
Future<String?> showCustomTones() async {
String? response;
try {
response =
await mirrorFlyMethodChannel.invokeMethod<String>('showCustomTones');
debugPrint("showCustomTones Response ==> $response");
return response;
} on PlatformException catch (e) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}