updateChatAvatar method
- ChatId id, {
- NativeFile? file,
- CropAreaInput? crop,
- void onSendProgress()?,
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,
);
}