RowQuestion.fromJson constructor

RowQuestion.fromJson(
  1. Map json_
)

Implementation

RowQuestion.fromJson(core.Map json_)
    : this(
        title:
            json_.containsKey('title') ? json_['title'] as core.String : null,
      );