SendResponse constructor

SendResponse({
  1. BlockHeight? resultingHeight,
})

Implementation

factory SendResponse({
  BlockHeight? resultingHeight,
}) {
  final $result = create();
  if (resultingHeight != null) {
    $result.resultingHeight = resultingHeight;
  }
  return $result;
}