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