copyWith method

ChatFilterInfo copyWith({
  1. int? id,
  2. String? title,
  3. String? iconName,
  4. dynamic extra,
  5. int? clientId,
})

Implementation

ChatFilterInfo copyWith({
  int? id,
  String? title,
  String? iconName,
  dynamic extra,
  int? clientId,
}) => ChatFilterInfo(
  id: id ?? this.id,
  title: title ?? this.title,
  iconName: iconName ?? this.iconName,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);