copyWith method

Coins copyWith({
  1. Item? item,
})

Implementation

Coins copyWith({
	Item? item,
}) {
	return Coins(
		item: item ?? this.item,
	);
}