removeFileUploadProgress method
Implementation
void removeFileUploadProgress(int messageId) {
final updatedProgress = Map<int, FileUploadProgress>.from(state.fileUploadProgress);
updatedProgress.remove(messageId);
emit(state.copyWith(fileUploadProgress: updatedProgress));
}