ChannelWrapUp.fromJson constructor

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

Implementation

factory ChannelWrapUp.fromJson(Map<String, dynamic> json) => ChannelWrapUp(
      status: json["status"],
      startDtTime: json["startDtTime"],
      endDtTime: json["endDtTime"],
      duration: json["duration"],
      active: json["active"],
      wrapUpTime: json["wrapUpTime"],
    );