UGoldTransactionListResponse.fromMap constructor

UGoldTransactionListResponse.fromMap(
  1. Map<String, dynamic> json
)

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"],
);