diff --git a/lib/yat/yat_record.dart b/lib/yat/yat_record.dart index 3636987d7..8b14ba1b3 100644 --- a/lib/yat/yat_record.dart +++ b/lib/yat/yat_record.dart @@ -4,8 +4,8 @@ import 'package:http/http.dart'; Future 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) {