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