PublishUrlNotificationResponse.fromJson constructor
PublishUrlNotificationResponse.fromJson(
- Map json_
Implementation
PublishUrlNotificationResponse.fromJson(core.Map json_)
: this(
urlNotificationMetadata: json_.containsKey('urlNotificationMetadata')
? UrlNotificationMetadata.fromJson(
json_['urlNotificationMetadata']
as core.Map<core.String, core.dynamic>)
: null,
);