Resource constructor

Resource({
  1. Map<String, Object?>? P_meta,
  2. String? description,
  3. String? mimeType,
  4. String? name,
  5. String? size,
  6. String? uri,
})

Implementation

Resource({
  this.P_meta,
  this.description,
  this.mimeType,
  this.name,
  this.size,
  this.uri,
});