onboardingFinished method
Implementation
Future<void> onboardingFinished(
String userId, Map<String, dynamic> payload) async {
try {
await _userDataService.onboardingFinished(userId, payload);
} catch (e) {
if (e is UserDataServiceException) {
throw UserServiceException(
code: e.code, message: e.message, stackTrace: e.stackTrace);
}
throw UserServiceException();
}
}