EmmaNativeAd.fromMap constructor

EmmaNativeAd.fromMap(
  1. Map<String, dynamic> json
)

Implementation

EmmaNativeAd.fromMap(Map<String, dynamic> json) {
  this.id = json["id"];
  this.templateId = json["templateId"];
  this.cta = json["cta"];
  this.times = json["times"];
  this.tag = json["tag"];
  this.showOn = json['showOn'];
  this.params = json["params"] != null ? Map.from(json["params"]) : null;
  this.fields = Map.from(json["fields"]);
}