call method

Future<Either<Failure, void>> call({
  1. required UserProfile profile,
  2. required OnboardingPreferences preferences,
})

Implementation

Future<Either<Failure, void>> call({
  required UserProfile profile,
  required OnboardingPreferences preferences,
}) async {
  return await _settingsRepo.saveOnboardingDataTransaction(
    profile: profile,
    preferences: preferences,
  );
}