CdnAssetMetadata constructor

const CdnAssetMetadata({
  1. required String hash,
  2. required int size,
  3. String? contentType,
  4. int? updatedAt,
})

Implementation

const CdnAssetMetadata({
  required this.hash,
  required this.size,
  this.contentType,
  this.updatedAt,
});