GetSummaryResponse constructor

GetSummaryResponse({
  1. ChainRef? chain,
  2. int? blocktime,
})

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;
}