fix(style): Format using dart format

This commit is contained in:
2023-03-08 19:32:03 +01:00
parent 1000e0756b
commit 38155051f5
83 changed files with 2687 additions and 1720 deletions

View File

@@ -21,7 +21,7 @@ int ioctetSortComparator(String a, String b) {
if (a.codeUnitAt(0) < b.codeUnitAt(0)) {
return -1;
}
return 1;
}
@@ -46,6 +46,6 @@ int ioctetSortComparatorRaw(List<int> a, List<int> b) {
if (a[0] < b[0]) {
return -1;
}
return 1;
}