ChatEventDescriptionChanged constructor

const ChatEventDescriptionChanged({
  1. required String oldDescription,
  2. required String newDescription,
})

The chat description was changed

Implementation

const ChatEventDescriptionChanged({
  required this.oldDescription,
  required this.newDescription,
});