read method
Returns the currently active UserId account stored in the database.
Implementation
Future<UserId?> read() async {
return await safe<UserId?>((db) async {
final stmt = db.select(db.accounts)..where((e) => e.id.equals(0));
final AccountRow? row = await stmt.getSingleOrNull();
_userId = row == null ? null : UserId(row.userId);
return _userId;
}, tag: 'account.read()');
}