ResellernotifyGetwatchdetailsResponse.fromJson constructor

ResellernotifyGetwatchdetailsResponse.fromJson(
  1. Map json_
)

Implementation

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