AuthenticationToken constructor

AuthenticationToken({
  1. String? session,
  2. required String token,
  3. String? txnId,
})

Implementation

AuthenticationToken({String? session, required this.token, this.txnId})
    : super(
        type: AuthenticationTypes.token,
        session: session,
      );