DownloadFileConfig constructor Null safety

DownloadFileConfig(
  1. {required String url,
  2. required String downloadPath,
  3. required AwsCredentialsConfig credentailsConfig,
  4. String versionId = '',
  5. bool continueDownloadIfFileDoesNotExist = true,
  6. bool resumeDownload = false}
)

Implementation

DownloadFileConfig(
    {required this.url,
    required this.downloadPath,
    required this.credentailsConfig,
    this.versionId = '',
    this.continueDownloadIfFileDoesNotExist = true,
    this.resumeDownload = false});