ignoredUsers property

List<String> ignoredUsers

A list of mxids of users who are ignored.

Implementation

List<String> get ignoredUsers =>
    List<String>.from(_accountData['m.ignored_user_list']
            ?.content
            .tryGetMap<String, Object?>('ignored_users')
            ?.keys ??
        <String>[]);