ResellernotifyGetwatchdetailsResponse.fromJson constructor
ResellernotifyGetwatchdetailsResponse.fromJson(
- Map json_
Implementation
ResellernotifyGetwatchdetailsResponse.fromJson(core.Map json_)
: this(
serviceAccountEmailAddresses:
json_.containsKey('serviceAccountEmailAddresses')
? (json_['serviceAccountEmailAddresses'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
topicName: json_.containsKey('topicName')
? json_['topicName'] as core.String
: null,
);