IAMPASSAuthenticationSession.fromJson constructor

IAMPASSAuthenticationSession.fromJson(
  1. Map<String, dynamic> json
)

Implementation

IAMPASSAuthenticationSession.fromJson(Map<String, dynamic> json)
    : authenticated = json['authenticated'],
      status = json['session_status'],
      statusURL = json['status_url'],
      token = json['session_token'],
      secret = json['session_secret'],
      logoutURL = json['logout_url'],
      reason = json['reason'];