setCurrency method

Future<void> setCurrency(
  1. String currency
)

Implementation

Future<void> setCurrency(String currency) async {
  return await _appSettingsHiveRepository.box.put('currency', currency);
}