Remove TRY
Ideally this asset would be supported, but it's not worth devoting effort to fix this 1 currency right now
Justin Ehrenhofer committed
Feb 28, 2023 at 12:51 UTC
c9726403ec9175bf716d1afded7e1563b6d06fa1
1 file changed
+1
-3
lib/entities/fiat_currency.dart
+1
-3
@@ -9,7 +9,7 @@ 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
- [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, twd, usd, vnd, zar];
13
14
static const ars = FiatCurrency(symbol: 'ARS', countryCode: "arg", fullName: "Argentine Peso");
15
static const aud = FiatCurrency(symbol: 'AUD', countryCode: "aus", fullName: "Australian Dollar");
@@ -53,7 +53,6 @@ class FiatCurrency extends EnumerableItem<String> with Serializable<String> {
53
static const sek = FiatCurrency(symbol: 'SEK', countryCode: "swe", fullName: "Swedish Krona");
54
static const sgd = FiatCurrency(symbol: 'SGD', countryCode: "sgp", fullName: "Singapore Dollar");
55
static const thb = FiatCurrency(symbol: 'THB', countryCode: "tha", fullName: "New Thaiwan Dollar");
56
- static const turtry = FiatCurrency(symbol: 'TRY', countryCode: "tur", fullName: "Turkish Lira");
56
static const twd = FiatCurrency(symbol: 'TWD', countryCode: "twn", fullName: "Thai Baht");
57
static const uah = FiatCurrency(symbol: 'UAH', countryCode: "ukr", fullName: "Ukrainian Hryvnia");
58
static const usd = FiatCurrency(symbol: 'USD', countryCode: "usa", fullName: "United States Dollar");
@@ -104,7 +103,6 @@ class FiatCurrency extends EnumerableItem<String> with Serializable<String> {
103
FiatCurrency.sek.raw: FiatCurrency.sek,
104
FiatCurrency.sgd.raw: FiatCurrency.sgd,
105
FiatCurrency.thb.raw: FiatCurrency.thb,
107
- FiatCurrency.turtry.raw: FiatCurrency.turtry,
106
FiatCurrency.twd.raw: FiatCurrency.twd,
107
FiatCurrency.uah.raw: FiatCurrency.uah,
108
FiatCurrency.usd.raw: FiatCurrency.usd,