FetchBlockIdAtDepthReq constructor

FetchBlockIdAtDepthReq({
  1. Int64? depth,
})

Implementation

factory FetchBlockIdAtDepthReq({
  $fixnum.Int64? depth,
}) {
  final _result = create();
  if (depth != null) {
    _result.depth = depth;
  }
  return _result;
}