EvaluateResponse constructor

EvaluateResponse({
  1. String? matchId,
})

Implementation

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