[skip ci] Remove AED

Justin Ehrenhofer committed Feb 28, 2023 at 10:02 UTC 7ba88699d4ba758355dd17a05e35fc0c0511c435
1 file changed +1 -3
lib/entities/fiat_currency.dart
+1 -3
@@ -9,9 +9,8 @@ class FiatCurrency extends EnumerableItem<String> with Serializable<String> {
9 static List<FiatCurrency> get all => _all.values.toList();
10
11 static List<FiatCurrency> get currenciesAvailableToBuyWith =>
12 - [aed, aud, bgn, brl, cad, chf, clp, cop, czk, dkk, egp, eur, gbp, gtq, hkd, hrk, huf, idr, ils, inr, isk, jpy, krw, mad, mxn, myr, ngn, nok, nzd, php, pkr, pln, ron, sek, sgd, thb, turtry, twd, usd, vnd, zar];
12 + [aud, bgn, brl, cad, chf, clp, cop, czk, dkk, egp, eur, gbp, gtq, hkd, hrk, huf, idr, ils, inr, isk, jpy, krw, mad, mxn, myr, ngn, nok, nzd, php, pkr, pln, ron, sek, sgd, thb, turtry, twd, usd, vnd, zar];
13
14 - static const aed = FiatCurrency(symbol: 'AED', countryCode: "are", fullName: "United Arab Emirates Dirham");
14 static const ars = FiatCurrency(symbol: 'ARS', countryCode: "arg", fullName: "Argentine Peso");
15 static const aud = FiatCurrency(symbol: 'AUD', countryCode: "aus", fullName: "Australian Dollar");
16 static const bdt = FiatCurrency(symbol: 'BDT', countryCode: "bgd", fullName: "Bangladeshi Taka");
@@ -63,7 +62,6 @@ class FiatCurrency extends EnumerableItem<String> with Serializable<String> {
62 static const zar = FiatCurrency(symbol: 'ZAR', countryCode: "saf", fullName: "South African Rand");
63
64 static final _all = {
66 - FiatCurrency.aed.raw: FiatCurrency.aed,
65 FiatCurrency.ars.raw: FiatCurrency.ars,
66 FiatCurrency.aud.raw: FiatCurrency.aud,
67 FiatCurrency.bdt.raw: FiatCurrency.bdt,