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