RpcTransactionOutputVerboseData constructor
RpcTransactionOutputVerboseData(
{ - String? scriptPublicKeyType,
- String? scriptPublicKeyAddress,
})
Implementation
factory RpcTransactionOutputVerboseData({
$core.String? scriptPublicKeyType,
$core.String? scriptPublicKeyAddress,
}) {
final _result = create();
if (scriptPublicKeyType != null) {
_result.scriptPublicKeyType = scriptPublicKeyType;
}
if (scriptPublicKeyAddress != null) {
_result.scriptPublicKeyAddress = scriptPublicKeyAddress;
}
return _result;
}