HalfdayResult.fromJson constructor

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

Implementation

factory HalfdayResult.fromJson(Map<String, dynamic> json) => HalfdayResult(
      halfPriceInfo: HalfPriceInfo.fromJson(json["halfPriceInfo"]),
      sessionsList: List<SessionsList>.from(
          json["sessionsList"].map((x) => SessionsList.fromJson(x))),
    );