run code format

This commit is contained in:
Lorenzo Pichilli 2023-05-15 14:46:00 +02:00
parent 84011566bf
commit 2c26f988e9
2 changed files with 8 additions and 11 deletions

View File

@ -38,10 +38,7 @@ class Cookie_ {
int? expiresDate;
///Indicates if the cookie is a session only cookie.
@SupportedPlatforms(platforms: [
IOSPlatform(),
MacOSPlatform()
])
@SupportedPlatforms(platforms: [IOSPlatform(), MacOSPlatform()])
bool? isSessionOnly;
///The cookie domain.

View File

@ -12,7 +12,7 @@
"watch": "flutter pub run build_runner watch --delete-conflicting-outputs",
"publish:dry": "npm run build && flutter pub publish --dry-run",
"publish": "npm run build && flutter pub publish",
"format": "flutter format lib example/integration_test",
"format": "dart format lib example/integration_test",
"docs:gen": "flutter pub global activate dartdoc && flutter pub global run dartdoc:dartdoc",
"docs:serve": "flutter pub global activate dhttpd && flutter pub global run dhttpd:dhttpd --path doc/api"
},