buildCanonicalSignedHeaders static method
Implementation
static String buildCanonicalSignedHeaders(Map<String, String?> headers) {
final sortedKeys = [];
headers.forEach((property, _) {
sortedKeys.add(property.toLowerCase());
});
sortedKeys.sort();
return sortedKeys.join(';');
}