EndUserAuthenticationConfigVariable.fromJson constructor

EndUserAuthenticationConfigVariable.fromJson(
  1. Map json_
)

Implementation

EndUserAuthenticationConfigVariable.fromJson(core.Map json_)
  : this(
      boolValue: json_['boolValue'] as core.bool?,
      intValue: json_['intValue'] as core.String?,
      key: json_['key'] as core.String?,
      secretValue:
          json_.containsKey('secretValue')
              ? EUASecret.fromJson(
                json_['secretValue'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      stringValue: json_['stringValue'] as core.String?,
    );