copyWith method
Implementation
Item copyWith({
dynamic meta,
String? key,
String? name,
String? description,
List<Tag>? tags,
}) =>
Item(
meta: meta ?? this.meta,
key: key ?? this.key,
name: name ?? this.name,
description: description ?? this.description,
tags: tags ?? this.tags,
);