getNameFolder method
Get the folder name is the same as the application
Implementation
@override
Future<String> getNameFolder() async {
try {
return await methodChannel.invokeMethod("getNameFolder");
} on PlatformException catch (e) {
throw OpenDocumentException('getNameFolder: ${e.stacktrace.toString()}');
}
}