QueryTallyResultResponse constructor

QueryTallyResultResponse({
  1. TallyResult? tally,
})

Implementation

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