fix(llc): format and analyze

This commit is contained in:
Salvatore Giordano
2021-09-29 09:55:56 +02:00
parent e754a8c37e
commit 2ce209bed0
2 changed files with 11 additions and 1 deletions
+6
View File
@@ -1,3 +1,9 @@
## Upcoming
🐞 Fixed
- [[#710]](https://github.com/GetStream/stream-chat-flutter/issues/710) Fixed JWT requiring using `String` as id.
## 3.0.0
🛑️ Breaking Changes from `2.2.1`
@@ -51,7 +51,11 @@ class Token extends Equatable {
userId != null,
'Invalid `token`, It should contain `user_id`',
);
return Token._(rawValue: rawValue, userId: userId!.toString(), authType: AuthType.jwt);
return Token._(
rawValue: rawValue,
userId: userId!.toString(),
authType: AuthType.jwt,
);
}
/// The token which can be used during the development.