Tarification constructor
Tarification(
- String id, {
- int? level,
- String? rev,
- int? deletionDate,
- Map<
String, String> ? label, - String? context,
- String? type,
- String? code,
- String? version,
- String? author,
- Set<
String> ? regions, - List<
Periodicity> ? periodicity, - List<
String> ? links, - Map<
LinkQualification, List< ? qualifiedLinks,String> > - Set<
CodeFlag> ? flags, - Map<
String, Set< ? searchTerms,String> > - String? data,
- Map<
AppendixType, String> ? appendices, - bool? disabled,
- Set<
DecryptedValorisation> ? valorisations, - Map<
String, String> ? category, - bool? consultationCode,
- bool? hasRelatedCode,
- bool? needsPrescriber,
- String? ngroup,
- List<
LetterValue> ? letterValues,
Implementation
Tarification(
this.id,
{
int? level,
String? rev,
int? deletionDate,
Map<String, String>? label,
String? context,
String? type,
String? code,
String? version,
String? author,
Set<String>? regions,
List<Periodicity>? periodicity,
List<String>? links,
Map<LinkQualification, List<String>>? qualifiedLinks,
Set<CodeFlag>? flags,
Map<String, Set<String>>? searchTerms,
String? data,
Map<AppendixType, String>? appendices,
bool? disabled,
Set<DecryptedValorisation>? valorisations,
Map<String, String>? category,
bool? consultationCode,
bool? hasRelatedCode,
bool? needsPrescriber,
Set<String>? relatedCodes,
String? ngroup,
List<LetterValue>? letterValues
}) : rev = rev ?? null,
deletionDate = deletionDate ?? null,
label = label ?? null,
context = context ?? null,
type = type ?? null,
code = code ?? null,
version = version ?? null,
author = author ?? null,
regions = regions ?? {},
periodicity = periodicity ?? [],
links = links ?? [],
qualifiedLinks = qualifiedLinks ?? {},
flags = flags ?? {},
searchTerms = searchTerms ?? {},
data = data ?? null,
appendices = appendices ?? {},
disabled = disabled ?? false,
valorisations = valorisations ?? {},
category = category ?? {},
consultationCode = consultationCode ?? null,
hasRelatedCode = hasRelatedCode ?? null,
needsPrescriber = needsPrescriber ?? null,
relatedCodes = relatedCodes ?? {},
ngroup = ngroup ?? null,
letterValues = letterValues ?? [],
_level = level ?? null;