import 'package:flutter/foundation.dart'; const String chatImageHost = "http://skk8mlm5b.hn-bkt.clouddn.com/"; //47.93.216.24:9090 线上 192.168.10.129:9090 测试 const String socketHost = kDebugMode ? '192.168.10.129' : '47.93.216.24'; const num socketPort = 9090; const ipBaseUrl = "http://whois.pconline.com.cn"; const localMiniBaseUrl = "http://192.168.10.54:8765/app/";///本地 const serviceMiniBaseUrl = "https://pos.api.lotus-wallet.com/app/";///线上 const localBaseUrl = "http://192.168.10.54:8766/app/";///本地 const serviceBaseUrl = "https://pos.platform.lotus-wallet.com/app/";///线上 Map> groupBy(Iterable values, S Function(T) key) { var map = >{}; for (var element in values) { (map[key(element)] ??= []).add(element); } return map; } Map groupCount(Map> values) { var map = {}; for (var element in values.keys) { map["$element"] = values[element]?.length ?? 0; } return map; } Map groupItem(Map> values, {int Function(T) key}) { var map = {}; for (var element in values.keys) { if (values[element] == null) { continue; } map["$element"] = key == null ? values[element].first : values[element].lMax(key); } return map; } T max(Iterable list, int Function(T) key) { T tt; for (T t in list) { if (tt == null) { tt = t; } if (key(tt) < key(t)) { tt = t; } } return tt; } extension ListExtension on Iterable { Map> lGroupBy(S Function(T) key) { return groupBy(this, key); } T lMax(int Function(T) key) { return max(this, key); } } extension MapExtension on Map> { Map get mGroupCount => groupCount(this); Map mGroupItem({int Function(T) key}) { return groupItem(this, key: key); } }