EndUserAuthenticationNotifyEndpointDestinationEndPoint.fromJson constructor

EndUserAuthenticationNotifyEndpointDestinationEndPoint.fromJson(
  1. Map json_
)

Implementation

EndUserAuthenticationNotifyEndpointDestinationEndPoint.fromJson(
  core.Map json_,
) : this(
      endpointUri: json_['endpointUri'] as core.String?,
      headers: (json_['headers'] as core.List?)
          ?.map(
            (value) =>
                EndUserAuthenticationNotifyEndpointDestinationEndPointHeader.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
          )
          .toList(),
    );