copyWith method
Implementation
UsageCharactersResponseModel copyWith(
{List<int>? time, Map<String, dynamic>? usage}) {
return UsageCharactersResponseModel(
time: time ?? this.time, usage: usage ?? this.usage);
}
UsageCharactersResponseModel copyWith(
{List<int>? time, Map<String, dynamic>? usage}) {
return UsageCharactersResponseModel(
time: time ?? this.time, usage: usage ?? this.usage);
}