setCurrency property
set
setCurrency
(String? currency)
Implementation
set setCurrency(String? currency) {
if (_isInitialized == false) {
throw Exception("Parodia should be initialized.");
}
_currency = currency;
_http!.setCurrency = currency;
}