GetBlockRequest constructor
GetBlockRequest({
- int? height,
- BlockVerbosity? verbosity,
Implementation
factory GetBlockRequest({
$core.int? height,
BlockVerbosity? verbosity,
}) {
final _result = create();
if (height != null) {
_result.height = height;
}
if (verbosity != null) {
_result.verbosity = verbosity;
}
return _result;
}