RpcTransactionOutputVerboseData constructor

RpcTransactionOutputVerboseData({
  1. String? scriptPublicKeyType,
  2. 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;
}