copyWith method

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

Implementation

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