fix: apply dart fix --apply

This commit is contained in:
2023-08-28 09:00:59 +00:00
committed by hugo
parent e74346b655
commit cc41b7b589
36 changed files with 127 additions and 127 deletions
@@ -46,7 +46,7 @@ abstract class Convert {
map.forEach(
(key, value) => pairs.add([
Uri.encodeQueryComponent(key, encoding: encoding ?? utf8),
Uri.encodeQueryComponent(value, encoding: encoding ?? utf8)
Uri.encodeQueryComponent(value, encoding: encoding ?? utf8),
]),
);
return pairs.map((pair) => '${pair[0]}=${pair[1]}').join('&');