From a38d43b167d0f48aa3151b090c8d0612602e7c14 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Tue, 23 Jul 2019 15:07:31 +0200 Subject: [PATCH] [Room] hasName false by default --- lib/src/Room.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/Room.dart b/lib/src/Room.dart index eaa9d01..fd6a007 100644 --- a/lib/src/Room.dart +++ b/lib/src/Room.dart @@ -107,7 +107,7 @@ class Room { this.id, this.membership, this.name, - this.hasName, + this.hasName = false, this.topic, this.avatar, this.notificationCount,