updateCallCover abstract method

Future<void> updateCallCover(
  1. NativeFile? file, {
  2. void onSendProgress(
    1. int count,
    2. int total
    )?,
})

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

Implementation

Future<void> updateCallCover(
  NativeFile? file, {
  void Function(int count, int total)? onSendProgress,
});