refactor(ui): remove context and add size property to EmojiOverlay

This commit is contained in:
Salvatore Giordano
2021-09-09 17:01:36 +02:00
parent 2f65a0d480
commit 19472027cc
4 changed files with 13 additions and 13 deletions
@@ -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);
}