RequestDeliverTx constructor

RequestDeliverTx({
  1. List<int>? tx,
})

Implementation

factory RequestDeliverTx({
  $core.List<$core.int>? tx,
}) {
  final _result = create();
  if (tx != null) {
    _result.tx = tx;
  }
  return _result;
}