Feedback.fromJson constructor

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

Implementation

factory Feedback.fromJson(Map<String, dynamic> json) => Feedback(
      type: json['type'] as String,
      className: json['className'] as String,
      objectId: json['objectId'] as String,
    );