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