QueryTallyResultResponse constructor

QueryTallyResultResponse({
  1. TallyResult? tally,
})

Implementation

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