QueryTallyResultResponse constructor
QueryTallyResultResponse({
- TallyResult? tally,
Implementation
factory QueryTallyResultResponse({
$6.TallyResult? tally,
}) {
final _result = create();
if (tally != null) {
_result.tally = tally;
}
return _result;
}