copyWith method

Tag copyWith({
  1. String? name,
  2. dynamic value,
  3. String? description,
})

Implementation

Tag copyWith({
  String? name,
  dynamic value,
  String? description,
}) =>
    Tag(
      name: name ?? this.name,
      value: value ?? this.value,
      description: description ?? this.description,
    );