Collection constructor

Collection({
  1. required LocalizedString localizedName,
  2. String? identifier,
  3. LocalizedString? localizedSortAs,
  4. Set<String> roles = const {},
  5. double? position,
  6. List<Link> links = const [],
})

Implementation

Collection({
  required this.localizedName,
  this.identifier,
  this.localizedSortAs,
  this.roles = const {},
  this.position,
  this.links = const [],
});