Advertising.fromMap constructor

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

Implementation

factory Advertising.fromMap(Map<String, dynamic> json) => Advertising(
      schedule: json["schedule"],
      podmessage: json["podmessage"],
      client: json["client"],
      debug: json["debug"],
      tag: json["tag"],
    );