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<core.String>((value) => value as core.String)
                .toList()
            : null,
        hasUnidentifiedProvider: _json.containsKey('hasUnidentifiedProvider')
            ? _json['hasUnidentifiedProvider'] as core.bool
            : null,
      );