SamlSpConfig.fromJson constructor

SamlSpConfig.fromJson(
  1. Map json_
)

Implementation

SamlSpConfig.fromJson(core.Map json_)
    : this(
        assertionConsumerServiceUri:
            json_.containsKey('assertionConsumerServiceUri')
                ? json_['assertionConsumerServiceUri'] as core.String
                : null,
        entityId: json_.containsKey('entityId')
            ? json_['entityId'] as core.String
            : null,
      );