GetTxRequest constructor

GetTxRequest({
  1. String? hash,
})

Implementation

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