$Feedback.fromJson constructor

$Feedback.fromJson(
  1. Map json_
)

Implementation

$Feedback.fromJson(core.Map json_)
  : this(
      answerCopied: json_['answerCopied'] as core.bool?,
      clickedUris: (json_['clickedUris'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );