ReauthSettings.fromJson constructor

ReauthSettings.fromJson(
  1. Map json_
)

Implementation

ReauthSettings.fromJson(core.Map json_)
    : this(
        maxAge: json_['maxAge'] as core.String?,
        method: json_['method'] as core.String?,
        policyType: json_['policyType'] as core.String?,
      );