getAppPath method
Implementation
@override
Future<String?> getAppPath(String identifier) async {
if (identifier == "") {
return "";
}
final Map<String, dynamic> params = {
"message": identifier
};
return await methodChannel.invokeMethod<String>('getAppPath', params);
}