Asim Olmez

Results 3 comments of Asim Olmez

``` class ChatDatabase extends _$ChatDatabase { ChatDatabase(this.userId) : super(_openConnection(userId)); final String userId; @override int get schemaVersion => 2; static QueryExecutor _openConnection(String pubkey) { return driftDatabase(name: 'conversation_database_$pubkey'); } ``` @simolus3 I...