ListCollectorsResponse.fromJson constructor

ListCollectorsResponse.fromJson(
  1. Map json_
)

Implementation

ListCollectorsResponse.fromJson(core.Map json_)
  : this(
      collectors: (json_['collectors'] as core.List?)
          ?.map(
            (value) => Collector.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
      nextPageToken: json_['nextPageToken'] as core.String?,
      unreachable: (json_['unreachable'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );