TextQuestion.fromJson constructor

TextQuestion.fromJson(
  1. Map json_
)

Implementation

TextQuestion.fromJson(core.Map json_)
    : this(
        paragraph: json_.containsKey('paragraph')
            ? json_['paragraph'] as core.bool
            : null,
      );