read method

Future<Rect?> read(
  1. ChatId id
)

Returns the Rect stored in the database by the provided id, if any.

Implementation

Future<Rect?> read(ChatId id) async {
  final Rect? existing = _cache[id];
  if (existing != null) {
    return existing;
  }

  return await safe<Rect?>((db) async {
    final stmt = db.select(db.callRectangles)
      ..where((u) => u.chatId.equals(id.val));
    final CallRectangleRow? row = await stmt.getSingleOrNull();

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

    return _RectDb.fromDb(row);
  });
}