copyWithWrapped method

MatchSummary copyWithWrapped({
  1. Wrapped<MatchSummaryCode>? summary,
})

Implementation

MatchSummary copyWithWrapped({Wrapped<enums.MatchSummaryCode>? summary}) {
  return MatchSummary(
      summary: (summary != null ? summary.value : this.summary));
}