AdEvent.fromJson constructor

AdEvent.fromJson(
  1. Map json
)

Implementation

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