SendResponse constructor

SendResponse({
  1. BlockHeight? resultingHeight,
})

Implementation

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