NotificationEndpoint.fromJson constructor

NotificationEndpoint.fromJson(
  1. Map json_
)

Implementation

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