copyWithWrapped method

UsageCharactersResponseModel copyWithWrapped({
  1. Wrapped<List<int>>? time,
  2. Wrapped<Map<String, dynamic>>? usage,
})

Implementation

UsageCharactersResponseModel copyWithWrapped(
    {Wrapped<List<int>>? time, Wrapped<Map<String, dynamic>>? usage}) {
  return UsageCharactersResponseModel(
      time: (time != null ? time.value : this.time),
      usage: (usage != null ? usage.value : this.usage));
}