mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-03 17:40:43 +00:00
CAKE-356 | replaced final on const in the yat_record.dart
This commit is contained in:
parent
cbec9d5067
commit
6defc6384e
1 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue