copyWith method
Implementation
MarketPlaceAccountItem copyWith({
String? id,
String? name,
bool? verified,
}) {
return MarketPlaceAccountItem(
id: id ?? this.id,
name: name ?? this.name,
verified: verified ?? this.verified,
);
}