updateChatAvatar method

Future<void> updateChatAvatar(
  1. ChatId id, {
  2. NativeFile? file,
  3. CropAreaInput? crop,
  4. void onSendProgress(
    1. int count,
    2. int total
    )?,
})

Updates the Chat.avatar field with the provided image, or resets it to null, by authority of the authenticated MyUser.

Implementation

Future<void> updateChatAvatar(
  ChatId id, {
  NativeFile? file,
  CropAreaInput? crop,
  void Function(int count, int total)? onSendProgress,
}) async {
  Log.debug(
    'updateChatAvatar($id, $file, crop: $crop, onSendProgress)',
    '$runtimeType',
  );

  await _chatRepository.updateChatAvatar(
    id,
    file: file,
    crop: crop,
    onSendProgress: onSendProgress,
  );
}