GooglePrivacyDlpV2LocationSupport.fromJson constructor

GooglePrivacyDlpV2LocationSupport.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2LocationSupport.fromJson(core.Map json_)
  : this(
      locations: (json_['locations'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      regionalizationScope: json_['regionalizationScope'] as core.String?,
    );