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