ResourceLink constructor
ResourceLink({
- Annotations? annotations,
- String? description,
- String? mimeType,
- required String name,
- int? size,
- String? title,
- required String uri,
- 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!);