FetchBlockIdAtHeightReq constructor

FetchBlockIdAtHeightReq({
  1. Int64? height,
})

Implementation

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