GetBlockWithTxsRequest constructor

GetBlockWithTxsRequest({
  1. Int64? height,
  2. PageRequest? pagination,
})

Implementation

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