ClientAlertClosed.fromJson constructor

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

Implementation

factory ClientAlertClosed.fromJson(Map<String, dynamic> json) => ClientAlertClosed(
      interaction: Interaction.fromJson(json),
      clientAlertUuid: json["client_alert_uuid"],
      timeElapsed: json["time_elapsed"],
    );