getDefaultNotificationUri method
Implementation
@override
Future<String?> getDefaultNotificationUri() async {
String? uri = "";
try {
uri = await mirrorFlyMethodChannel.invokeMethod<String?>('getDefaultNotificationUri');
return uri;
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
rethrow;
} on Exception catch (error) {
LogMessage.d("Exception ", " $error");
rethrow;
}
}