getNameFile static method

Future<String> getNameFile(
  1. {required String url}
)
  • Get the url name

Implementation

static Future<String> getNameFile({required String url}) async {
  return await OpenDocumentPlatform.instance.getNameFile(url: url);
}