avatar method
- ChatId id
 
Fetches the ChatAvatars of the provided RxChat.
Implementation
Future<ChatAvatar?> avatar(ChatId id) async {
  Log.debug('avatar($id)', '$runtimeType');
  final response = await _graphQlProvider.avatar(id);
  return response.chat?.avatar?.toModel();
}