PaymentNotification.fromMap constructor
Implementation
factory PaymentNotification.fromMap(Map<String, dynamic> json) => PaymentNotification(
facebook: json["facebook"] == null ? null : json["facebook"],
whatsApp: json["whatsApp"] == null ? null : json["whatsApp"],
line: json["line"] == null ? null : json["line"],
);