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