GetTxRequest constructor

GetTxRequest({
  1. String? hash,
})

Implementation

factory GetTxRequest({
  $core.String? hash,
}) {
  final _result = create();
  if (hash != null) {
    _result.hash = hash;
  }
  return _result;
}