diff --git a/lib/src/model/auth/authentication_token.dart b/lib/src/model/auth/authentication_token.dart index 13749069..fd9c18cd 100644 --- a/lib/src/model/auth/authentication_token.dart +++ b/lib/src/model/auth/authentication_token.dart @@ -26,6 +26,8 @@ import 'authentication_types.dart'; class AuthenticationToken extends AuthenticationData { String token; + + /// removed in the unstable version of the spec String? txnId; AuthenticationToken({String? session, required this.token, this.txnId})