GoogleCloudRetailV2Audience.fromJson constructor

GoogleCloudRetailV2Audience.fromJson(
  1. Map json_
)

Implementation

GoogleCloudRetailV2Audience.fromJson(core.Map json_)
    : this(
        ageGroups: json_.containsKey('ageGroups')
            ? (json_['ageGroups'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        genders: json_.containsKey('genders')
            ? (json_['genders'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );