QueryCurrentEpochResponse.fromJson constructor
Implementation
factory QueryCurrentEpochResponse.fromJson(Map<String, dynamic> json) {
return QueryCurrentEpochResponse(
currentEpoch: json.valueAsBigInt<BigInt?>(
'current_epoch',
acceptCamelCase: true,
),
);
}