MerchantInfo.fromMap constructor
MerchantInfo.fromMap(
- Map<String, dynamic> json
)
Implementation
factory MerchantInfo.fromMap(Map<String, dynamic> json) => MerchantInfo(
id: json["id"] == null ? null : json["id"],
name: json["name"] == null ? null : json["name"],
address: json["address"] == null ? null : json["address"],
email: json["email"] == null ? null : json["email"],
logoUrl: json["logoUrl"] == null ? null : json["logoUrl"],
bannerUrl: json["bannerUrl"] == null ? null : json["bannerUrl"],
);