migrate to nnbd

Signed-off-by: Sahil Kumar <[email protected]>
This commit is contained in:
Sahil Kumar
2021-04-20 19:52:06 +05:30
parent 8f1f7b0b68
commit 3bb1b11ee8
59 changed files with 642 additions and 589 deletions
@@ -9,7 +9,7 @@ class ConnectionEvents extends Table {
IntColumn get id => integer()();
/// User object of the current user
TextColumn get ownUser => text().nullable().map(MapConverter<Object>())();
TextColumn get ownUser => text().nullable().map(MapConverter())();
/// The number of unread messages for current user
IntColumn get totalUnreadCount => integer().nullable()();