ChannelRes.fromJson constructor

ChannelRes.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ChannelRes.fromJson(Map<String, dynamic> json) => ChannelRes(
      data: json["data"] == null
          ? null
          : List<Datum>.from(json["data"].map((x) => Datum.fromJson(x))),
    );