FileResourceRef constructor

const FileResourceRef({
  1. String? path,
  2. String? name,
  3. int? size,
  4. String? contentType,
  5. Map<String, dynamic> raw = const {},
})

Implementation

const FileResourceRef({
  this.path,
  this.name,
  this.size,
  this.contentType,
  this.raw = const {},
});