updatePollPartial method
Implementation
Future<Result<PollData>> updatePollPartial(
api.UpdatePollPartialRequest request,
) async {
final pollIdResult = await _pollId();
final result = await pollIdResult.flatMapAsync((pollId) {
return pollsRepository.updatePollPartial(pollId, request);
});
return result;
}