Feedback.fromMap constructor
Implementation
factory Feedback.fromMap(Map<String, dynamic> json) => Feedback(
message: json["message"],
buttons: json["buttons"] == null
? []
: List<Button>.from(json["buttons"]!.map((x) => Button.fromMap(x))),
);