PubSubTopicSource.fromJson constructor

PubSubTopicSource.fromJson(
  1. Map json_
)

Implementation

PubSubTopicSource.fromJson(core.Map json_)
  : this(
      dataAffinityRegions: (json_['dataAffinityRegions'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      topic: json_['topic'] as core.String?,
    );