UrlNotification.fromJson constructor
UrlNotification.fromJson(
- Map json_
Implementation
UrlNotification.fromJson(core.Map json_)
: this(
notifyTime: json_.containsKey('notifyTime')
? json_['notifyTime'] as core.String
: null,
type: json_.containsKey('type') ? json_['type'] as core.String : null,
url: json_.containsKey('url') ? json_['url'] as core.String : null,
);