GetSummaryResponse constructor
Implementation
factory GetSummaryResponse({
$1.ChainRef? chain,
$core.int? blocktime,
}) {
final result = create();
if (chain != null) result.chain = chain;
if (blocktime != null) result.blocktime = blocktime;
return result;
}