CAKE-356 | replaced final on const in the yat_record.dart

OleksandrSobol committed Aug 27, 2021 at 23:00 UTC 6defc6384e1aa17152366422909d02f384a99449
1 file changed +2 -2
lib/yat/yat_record.dart
+2 -2
@@ -4,8 +4,8 @@ import 'package:http/http.dart';
4
5 Future<String> fetchYatAddress(String emojiId, String ticker) async {
6 const _requestURL = 'https://a.y.at/emoji_id/';
7 - final classValue = '0x10';
8 - final tagValues = {'xmr' : ['01', '02'], 'btc' : ['03'], 'eth' : ['04']};
7 + const classValue = '0x10';
8 + const tagValues = {'xmr' : ['01', '02'], 'btc' : ['03'], 'eth' : ['04']};
9 final tagValue = tagValues[ticker];
10
11 if (tagValue == null) {