FullscreenMode.fromJson constructor

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

Implementation

factory FullscreenMode.fromJson(Map<String, dynamic> json) => FullscreenMode(
      interaction: Interaction.fromJson(json),
      widgetUuid: json["widget_uuid"],
      timeElapsed: json["time_elapsed"],
    );