open method

Future<String> open({
  1. required String path,
  2. String type = '',
})

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