copyWith method

Type copyWith({
  1. String? text,
  2. FixedList<Coding>? coding,
})

Creates a deep copy of this Type.

Implementation

Type copyWith({
  String? text,
  FixedList<Coding>? coding,
}) =>
    Type(
      text: text ?? this.text,
      coding: coding ?? this.coding,
    );