GoogleIdentityAccesscontextmanagerV1ServicePattern.fromJson constructor

GoogleIdentityAccesscontextmanagerV1ServicePattern.fromJson(
  1. Map json_
)

Implementation

GoogleIdentityAccesscontextmanagerV1ServicePattern.fromJson(core.Map json_)
  : this(
      modifiers: (json_['modifiers'] as core.List?)
          ?.map(
            (value) => GoogleIdentityAccesscontextmanagerV1Modifier.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
      pattern: json_['pattern'] as core.String?,
      service: json_['service'] as core.String?,
    );