UiFeedbackElementContentConfig.fromJson constructor

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

Implementation

factory UiFeedbackElementContentConfig.fromJson(Map<String, dynamic> json) => UiFeedbackElementContentConfig(
    contentValue: json["contentValue"],
    durationMills: json["durationMills"],
    priorityLevel: json["priorityLevel"],
);