chore(repo): update flutter version in workflow

This commit is contained in:
Salvatore Giordano
2021-09-09 10:25:08 +02:00
parent 18c6fd842c
commit 720c0a80ed
2 changed files with 4 additions and 2 deletions
@@ -2,7 +2,7 @@ name: stream_flutter_workflow
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
flutter_version: "2.2.2"
flutter_version: "2.5.0"
on:
pull_request:
@@ -38,7 +38,9 @@ class AuthInterceptor extends Interceptor {
'Authorization': token.rawValue,
'stream-auth-type': token.authType.raw,
};
options..queryParameters.addAll(params)..headers.addAll(headers);
options
..queryParameters.addAll(params)
..headers.addAll(headers);
return handler.next(options);
}