QueryGetCountResponse.fromJson constructor

QueryGetCountResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory QueryGetCountResponse.fromJson(Map<String, dynamic> json) {
  return QueryGetCountResponse(
    totalCount: json.valueAsBigInt<BigInt?>(
      'total_count',
      acceptCamelCase: true,
    ),
  );
}