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,
);