open method
Future method open
takes the String path and String type
Call JOpenPlatform and instance.open
that has String return Value
Implementation
Future<String> open({required String path, String type = ''}) {
return JOpenPlatform.instance.open(path: path, type: type);
}