toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (maxInactivity != null) 'maxInactivity': maxInactivity!,
  if (sessionLength != null) 'sessionLength': sessionLength!,
  if (sessionLengthEnabled != null)
    'sessionLengthEnabled': sessionLengthEnabled!,
  if (sessionReauthMethod != null)
    'sessionReauthMethod': sessionReauthMethod!,
  if (useOidcMaxAge != null) 'useOidcMaxAge': useOidcMaxAge!,
};