MarketPlaceAccountItem constructor

MarketPlaceAccountItem({
  1. required String id,
  2. required String name,
  3. bool verified = false,
})

Implementation

MarketPlaceAccountItem({
  required this.id,
  required this.name,
  this.verified = false,
});