FrameResource constructor

FrameResource({
  1. required String url,
  2. required ResourceType type,
  3. required String mimeType,
  4. TimeSinceEpoch? lastModified,
  5. num? contentSize,
  6. bool? failed,
  7. bool? canceled,
})

Implementation

FrameResource({
  required this.url,
  required this.type,
  required this.mimeType,
  this.lastModified,
  this.contentSize,
  this.failed,
  this.canceled,
});