UrlNotification.fromJson constructor

UrlNotification.fromJson(
  1. Map json_
)

Implementation

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