ResizeText.fromJson constructor

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

Implementation

factory ResizeText.fromJson(Map<String, dynamic> json) => ResizeText(
      interaction: Interaction.fromJson(json),
      widgetUuid: json["widget_uuid"],
      from: json["from"],
      to: json["to"],
    );