FileLink constructor

const FileLink({
  1. required Uri downloadUrl,
  2. int? bytes,
  3. String? contentType,
  4. DateTime? expiresAt,
})

Creates a file link.

Implementation

const FileLink({required this.downloadUrl, this.bytes, this.contentType, this.expiresAt});