ResourceLink constructor

ResourceLink({
  1. Annotations? annotations,
  2. String? description,
  3. String? mimeType,
  4. required String name,
  5. int? size,
  6. String? title,
  7. required String uri,
  8. AcpJsonMap? meta,
})

Implementation

ResourceLink({
  this.annotations,
  this.description,
  this.mimeType,
  required this.name,
  this.size,
  this.title,
  required this.uri,
  AcpJsonMap? meta,
}) : meta = meta == null ? null : deepFreezeAcpJsonMap(meta!);