CurrencyConfig.fromJson constructor
CurrencyConfig.fromJson(
- dynamic json
Implementation
factory CurrencyConfig.fromJson(dynamic json) {
return CurrencyConfig(
code: json['code'] as String,
label: json['label'] as String,
);
}