updateCallCover method
- NativeFile? file, {
- void onSendProgress()?,
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,
}) async {
Log.debug('updateCallCover($file, onSendProgress)', '$runtimeType');
await _myUserRepository.updateCallCover(
file,
onSendProgress: onSendProgress,
);
}