AdTechnologyProviders.fromJson constructor

AdTechnologyProviders.fromJson(
  1. Map json_
)

Implementation

AdTechnologyProviders.fromJson(core.Map json_)
    : this(
        detectedProviderIds: json_.containsKey('detectedProviderIds')
            ? (json_['detectedProviderIds'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        hasUnidentifiedProvider: json_.containsKey('hasUnidentifiedProvider')
            ? json_['hasUnidentifiedProvider'] as core.bool
            : null,
      );