copyWith method

  1. @override
MessageForumTopicCreated copyWith({
  1. String? name,
  2. ForumTopicIcon? icon,
})
override

Implementation

@override
MessageForumTopicCreated copyWith({
  String? name,
  ForumTopicIcon? icon,
}) =>
    MessageForumTopicCreated(
      name: name ?? this.name,
      icon: icon ?? this.icon,
    );