static Map<String, String>? parseMapListHeaders( Map<String, List<String>>? map) => map?.map((key, value) => MapEntry(key, value.join('; ')));