updateUrlLinkState static method

void updateUrlLinkState(
  1. String downloadUrl
)

Implementation

static void updateUrlLinkState(String downloadUrl) {
  /// Update the upload state with the download URL
  final uploadState = UploadState();
  uploadState.uploadLink = downloadUrl;
}