PubSubConfig.fromJson constructor

PubSubConfig.fromJson(
  1. Map json_
)

Implementation

PubSubConfig.fromJson(core.Map json_)
    : this(
        topic:
            json_.containsKey('topic') ? json_['topic'] as core.String : null,
      );