UGoldOrderListResponse.fromMap constructor
Implementation
factory UGoldOrderListResponse.fromMap(Map<String, dynamic> json) => UGoldOrderListResponse(
items: json["items"] == null ? <UGoldOrderResponse>[] : List<UGoldOrderResponse>.from(json["items"]!.map((dynamic x) => UGoldOrderResponse.fromMap(x))),
nextCursor: json["nextCursor"],
);