createAttributesKey top-level property
Implementation
Function createAttributesKey = (Map<String, dynamic> attributes) {
String attributesKey = '';
final keys = attributes.keys.toList();
keys.sort();
for (int i = 0, il = keys.length; i < il; i++) {
attributesKey += '${keys[i]}:${attributes[keys[i]]};';
}
return attributesKey;
};