AdEvent.fromJson constructor
AdEvent.fromJson(
- Map json
Implementation
factory AdEvent.fromJson(Map<dynamic, dynamic> json) {
return AdEvent(
eventType: json['eventType'], msg: json['msg'], adType: json['adType']);
}