add note about txnId

This commit is contained in:
Lukas Lihotzki 2021-07-02 11:36:42 +02:00
parent bf3bed9ef9
commit c73ea67bcd
1 changed files with 2 additions and 0 deletions

View File

@ -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})