Notification.fromJson constructor

Notification.fromJson(
  1. Map _json
)

Implementation

Notification.fromJson(core.Map _json)
    : this(
        cloudPubsubTopic: _json.containsKey('cloudPubsubTopic')
            ? CloudPubsubTopic.fromJson(_json['cloudPubsubTopic']
                as core.Map<core.String, core.dynamic>)
            : null,
      );