Notification.fromJson constructor

Notification.fromJson(
  1. Map json_
)

Implementation

Notification.fromJson(core.Map json_)
    : this(
        body: json_['body'] as core.String?,
        image: json_['image'] as core.String?,
        title: json_['title'] as core.String?,
      );