copyWith method
Implementation
ItemValue copyWith({
String? name,
String? description,
String? value,
bool? state,
}) =>
ItemValue(
name: name ?? this.name,
description: description ?? this.description,
value: value ?? this.value,
state: state ?? this.state,
);