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

This commit is contained in:
OleksandrSobol 2021-08-27 23:00:56 +03:00
parent cbec9d5067
commit 6defc6384e

View file

@ -4,8 +4,8 @@ import 'package:http/http.dart';
Future<String> fetchYatAddress(String emojiId, String ticker) async {
const _requestURL = 'https://a.y.at/emoji_id/';
final classValue = '0x10';
final tagValues = {'xmr' : ['01', '02'], 'btc' : ['03'], 'eth' : ['04']};
const classValue = '0x10';
const tagValues = {'xmr' : ['01', '02'], 'btc' : ['03'], 'eth' : ['04']};
final tagValue = tagValues[ticker];
if (tagValue == null) {