MessageActionTopicCreate constructor

const MessageActionTopicCreate({
  1. required String title,
  2. required int iconColor,
  3. int? iconEmojiId,
})

Message Action Topic Create constructor.

Implementation

const MessageActionTopicCreate({
  required this.title,
  required this.iconColor,
  this.iconEmojiId,
}) : super._();