GooglePrivacyDlpV2WordList.fromJson constructor

GooglePrivacyDlpV2WordList.fromJson(
  1. Map json_
)

Implementation

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