updateCallCover method
- NativeFile? file, {
- void onSendProgress()?,
override
Updates or resets the MyUser.callCover field with the provided image
file
.
Implementation
@override
Future<void> updateCallCover(
NativeFile? file, {
void Function(int count, int total)? onSendProgress,
}) async {
Log.debug('updateCallCover($file, onSendProgress)', '$runtimeType');
dio.MultipartFile? upload;
if (file != null) {
await file.ensureCorrectMediaType();
if (file.stream != null) {
upload = dio.MultipartFile.fromStream(
() => file.stream!,
file.size,
filename: file.name,
contentType: file.mime,
);
} else if (file.bytes.value != null) {
upload = dio.MultipartFile.fromBytes(
file.bytes.value!,
filename: file.name,
contentType: file.mime,
);
} else if (file.path != null) {
upload = await dio.MultipartFile.fromFile(
file.path!,
filename: file.name,
contentType: file.mime,
);
} else {
throw ArgumentError(
'At least stream, bytes or path should be specified.',
);
}
}
final UserCallCover? callCover = myUser.value?.callCover;
if (file == null) {
myUser.update((u) => u?.callCover = null);
}
try {
await _graphQlProvider.updateUserCallCover(
upload,
null,
onSendProgress: onSendProgress,
);
} catch (_) {
if (file == null) {
myUser.update((u) => u?.callCover = callCover);
}
rethrow;
}
}