AuthenticationToken constructor

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

Implementation

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