GoogleCloudIdentitytoolkitAdminV2SmsRegionConfig.fromJson constructor

GoogleCloudIdentitytoolkitAdminV2SmsRegionConfig.fromJson(
  1. Map _json
)

Implementation

GoogleCloudIdentitytoolkitAdminV2SmsRegionConfig.fromJson(core.Map _json)
    : this(
        allowByDefault: _json.containsKey('allowByDefault')
            ? GoogleCloudIdentitytoolkitAdminV2AllowByDefault.fromJson(
                _json['allowByDefault']
                    as core.Map<core.String, core.dynamic>)
            : null,
        allowlistOnly: _json.containsKey('allowlistOnly')
            ? GoogleCloudIdentitytoolkitAdminV2AllowlistOnly.fromJson(
                _json['allowlistOnly'] as core.Map<core.String, core.dynamic>)
            : null,
      );