From c73ea67bcd127bcbb03621dc11fe102446358b06 Mon Sep 17 00:00:00 2001 From: Lukas Lihotzki Date: Fri, 2 Jul 2021 11:36:42 +0200 Subject: [PATCH] add note about txnId --- lib/src/model/auth/authentication_token.dart | 2 ++ 1 file changed, 2 insertions(+) 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})