Query$ListTransactions$transactions$pageInfo.fromJson constructor
Query$ListTransactions$transactions$pageInfo.fromJson(
- Map<String, dynamic> json
)
Implementation
factory Query$ListTransactions$transactions$pageInfo.fromJson(
Map<String, dynamic> json,
) {
final l$hasNextPage = json['hasNextPage'];
final l$hasPreviousPage = json['hasPreviousPage'];
final l$startCursor = json['startCursor'];
final l$endCursor = json['endCursor'];
return Query$ListTransactions$transactions$pageInfo(
hasNextPage: (l$hasNextPage as bool),
hasPreviousPage: (l$hasPreviousPage as bool),
startCursor: (l$startCursor as String?),
endCursor: (l$endCursor as String?),
);
}