Link constructor
const
Link({
- required String href,
- String? id,
- bool templated = false,
- String? type,
- String? title,
- List<
String> rels = const [], - Properties properties = const Properties(),
- int? height,
- int? width,
- double? bitrate,
- double? duration,
- List<
String> languages = const [], - List<
Link> alternates = const [], - List<
Link> children = const [],
Implementation
const Link({
required this.href,
this.id,
this.templated = false,
this.type,
this.title,
this.rels = const [],
this.properties = const Properties(),
this.height,
this.width,
this.bitrate,
this.duration,
this.languages = const [],
this.alternates = const [],
this.children = const [],
});