read method

Future<WindowPreferences?> read()

Returns the WindowPreferences stored in the database.

Implementation

Future<WindowPreferences?> read() async {
  if (_prefs != null) {
    return _prefs;
  }

  return await safe<WindowPreferences?>((db) async {
    final stmt = db.select(db.windowRectangles)..where((u) => u.id.equals(0));
    final WindowRectangleRow? row = await stmt.getSingleOrNull();

    if (row == null) {
      return null;
    }

    return _prefs = _WindowPreferencesDb.fromDb(row);
  }, exclusive: false);
}