getNameFolder method

  1. @override
Future<String> getNameFolder()
override

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()}');
  }
}