NotificationButtons.fromJson constructor

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

Implementation

NotificationButtons.fromJson(Map<String, dynamic> json) {
  label = json['label'];
  click = json['click'] != null ? new Click.fromJson(json['click']) : null;
}