copyWith method

Coding copyWith({
  1. Uri? system,
  2. String? code,
  3. String? display,
})

Creates a new Coding instance with the provided values.

Implementation

Coding copyWith({
  Uri? system,
  String? code,
  String? display,
}) =>
    Coding(
      system: system ?? this.system,
      code: code ?? this.code,
      display: display ?? this.display,
    );