read method

Future<ChatCallCredentials?> read(
  1. ChatItemId id
)

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

Implementation

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

  return await safe<ChatCallCredentials?>(
    (db) async {
      final stmt = db.select(db.callCredentials)
        ..where((u) => u.callId.equals(id.val));
      final CallCredentialsRow? row = await stmt.getSingleOrNull();

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

      return _CallCredentialsDb.fromDb(row);
    },
    tag: 'call_credentials.read($id)',
    exclusive: false,
  );
}