Subject constructor

const Subject({
  1. required LocalizedString localizedName,
  2. LocalizedString? localizedSortAs,
  3. String? scheme,
  4. String? code,
  5. List<Link> links = const [],
})

Implementation

const Subject(
    {required this.localizedName,
    this.localizedSortAs,
    this.scheme,
    this.code,
    this.links = const []});