copyWith method

MarketPlaceAccountItem copyWith({
  1. String? id,
  2. String? name,
  3. bool? verified,
})

Implementation

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