HasReply constructor

HasReply({
  1. bool? exists,
  2. String? transactionError,
})

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;
}