createFromURL static method

TransportableFile createFromURL(
  1. Uri url,
  2. DecryptKey? password
)

Create from remote URL

Implementation

static TransportableFile createFromURL(Uri url, DecryptKey? password) {
  return create(null, null, url, password);
}