Enclosure constructor

const Enclosure({
  1. required String url,
  2. required String length,
  3. String type = 'application/octet-stream',
})

Creates a new Enclosure object

Implementation

const Enclosure({required this.url, required this.length, this.type = 'application/octet-stream'});