update method

Future<ResponseItemDTO> update({
  1. StoreSettingCurrencyPutBody? storeSettingCurrency,
})

Implementation

Future<ResponseItemDTO> update(
    {StoreSettingCurrencyPutBody? storeSettingCurrency}) async {
  return await _repository!.update(
    storeSettingCurrency: storeSettingCurrency,
  );
}