IdentityServiceIdentityServiceOptions.fromJson constructor

IdentityServiceIdentityServiceOptions.fromJson(
  1. Map json_
)

Implementation

IdentityServiceIdentityServiceOptions.fromJson(core.Map json_)
  : this(
      diagnosticInterface:
          json_.containsKey('diagnosticInterface')
              ? IdentityServiceDiagnosticInterface.fromJson(
                json_['diagnosticInterface']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
      sessionDuration: json_['sessionDuration'] as core.String?,
    );