FetchBlockIdAtDepthReq constructor

FetchBlockIdAtDepthReq({
  1. Int64? depth,
})

Implementation

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