NotificationConfig.fromJson constructor

NotificationConfig.fromJson(
  1. Map json_
)

Implementation

NotificationConfig.fromJson(core.Map json_)
  : this(
      pubsub:
          json_.containsKey('pubsub')
              ? PubSub.fromJson(
                json_['pubsub'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );