setProfileCompleted method

Future<void> setProfileCompleted(
  1. bool profileCompleted
)

Implementation

Future<void> setProfileCompleted(bool profileCompleted) async {
  return await _appSettingsHiveRepository.box
      .put('profileCompleted', profileCompleted);
}