Notification.fromJson constructor
Notification.fromJson(
- 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,
);