GoogleIdentityAccesscontextmanagerV1BasicLevel.fromJson constructor

GoogleIdentityAccesscontextmanagerV1BasicLevel.fromJson(
  1. Map json_
)

Implementation

GoogleIdentityAccesscontextmanagerV1BasicLevel.fromJson(core.Map json_)
  : this(
      combiningFunction: json_['combiningFunction'] as core.String?,
      conditions: (json_['conditions'] as core.List?)
          ?.map(
            (value) => GoogleIdentityAccesscontextmanagerV1Condition.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
    );