BlockchainInfo constructor
Implementation
factory BlockchainInfo({
$core.List<$core.int>? tipHash,
$core.int? tipHeight,
}) {
final result = create();
if (tipHash != null) result.tipHash = tipHash;
if (tipHeight != null) result.tipHeight = tipHeight;
return result;
}