PaymentNotification.fromMap constructor

PaymentNotification.fromMap(
  1. Map<String, dynamic> json
)

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"],
    );