VerifyReply constructor

VerifyReply({
  1. String? transactionError,
})

Implementation

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