GoogleAnalyticsAdminV1alphaBatchDeleteUserLinksRequest.fromJson constructor
GoogleAnalyticsAdminV1alphaBatchDeleteUserLinksRequest.fromJson(
- Map _json
Implementation
GoogleAnalyticsAdminV1alphaBatchDeleteUserLinksRequest.fromJson(
core.Map _json)
: this(
requests: _json.containsKey('requests')
? (_json['requests'] as core.List)
.map<GoogleAnalyticsAdminV1alphaDeleteUserLinkRequest>(
(value) =>
GoogleAnalyticsAdminV1alphaDeleteUserLinkRequest
.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);