onEventResultChanged method
room event response.
Param roomId
chat room id.
Param type
room event type. see RoomEventsType.
Param error
error.
Implementation
@override
void onEventResultChanged(
String roomId, RoomEventsType type, ChatError? error) {
if (roomId == this.roomId) {
listener?.onEventResultChanged?.call(type, error);
}
}