EndUserAuthenticationConfigUserPassword.fromJson constructor

EndUserAuthenticationConfigUserPassword.fromJson(
  1. Map json_
)

Implementation

EndUserAuthenticationConfigUserPassword.fromJson(core.Map json_)
  : this(
      password: json_.containsKey('password')
          ? EUASecret.fromJson(
              json_['password'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      username: json_['username'] as core.String?,
    );