copyWithWrapped method
MonthSummariesResponse$Data
copyWithWrapped({
- Wrapped<
List< ? months,MonthSummary> > - Wrapped<
num> ? serverKnowledge,
Implementation
MonthSummariesResponse$Data copyWithWrapped(
{Wrapped<List<MonthSummary>>? months, Wrapped<num>? serverKnowledge}) {
return MonthSummariesResponse$Data(
months: (months != null ? months.value : this.months),
serverKnowledge: (serverKnowledge != null
? serverKnowledge.value
: this.serverKnowledge));
}