MessageNotification.fromJson constructor

MessageNotification.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory MessageNotification.fromJson(Map<String, dynamic> json) =>
    MessageNotification(
      title: json["title"],
      body: json["body"],
      image: json["image"],
      androidChannelId: json["android_channel_id"],
    );