Market.fromJson constructor

Market.fromJson(
  1. Map<String, dynamic> json
)

Implementation

Market.fromJson(Map<String, dynamic> json) {
  name = json['name'];
  identifier = json['identifier'];
  hasTradingIncentive = json['has_trading_incentive'];
  logo = json['logo'];
}