Coding constructor

Coding({
  1. String? id,
  2. String? rev,
  3. String? type,
  4. String? code,
  5. String? version,
  6. Map<String, String> description = const {},
  7. Map<String, List<String>> qualifiedLinks = const {},
  8. Map<String, Set<String>> searchTerms = const {},
})

Returns a new Coding instance.

Implementation

Coding({
  this.id,
  this.rev,
  this.type,
  this.code,
  this.version,
  this.description = const {},
  this.qualifiedLinks = const {},
  this.searchTerms = const {},
});