publicChallengeParams property

Map<String, String> get publicChallengeParams

Implementation

Map<String, String> get publicChallengeParams => _publicChallengeParams;
set publicChallengeParams (Map<String, String> value)

The publicChallengeParameters received from the CreateAuthChallenge lambda during custom auth

This value will be used during the custom auth challenge flow

Implementation

set publicChallengeParams(Map<String, String> value) {
  _publicChallengeParams = value;
  notifyListeners();
}