re-add trailing commas

This commit is contained in:
Fabian Freund
2025-02-18 15:44:36 +01:00
parent e8712fcaf4
commit ec175514e6
17 changed files with 32 additions and 32 deletions
+2 -2
View File
@@ -204,7 +204,7 @@ class GenericWebsiteService extends _$GenericWebsiteService {
'title': title,
'resources': resources.map(_serializeResource).toList(),
};
}, [response.body, url.toString()]);
}, [response.body, url.toString()],);
final resources =
(result['resources']! as List<Map<String, dynamic>>)
@@ -220,7 +220,7 @@ class GenericWebsiteService extends _$GenericWebsiteService {
title: result['title'] as String?,
favicon: favicon,
);
}, exceptionHandler: handleHttpError);
}, exceptionHandler: handleHttpError,);
}
Future<BrowserIcon?> getCachedIcon(Uri url) async {