updateAvatar method

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

Updates or resets the MyUser.avatar field with the provided image file.

Implementation

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

  await _myUserRepository.updateAvatar(
    file,
    crop: crop,
    onSendProgress: onSendProgress,
  );
}