RPChoice class

The choice object which the participant can choose during a RPQuestionStep with RPChoiceAnswerFormat.

Inheritance
  • Object
  • Serializable
  • RPChoice
Annotations
  • @JsonSerializable(fieldRename: FieldRename.snake, includeIfNull: false)

Constructors

RPChoice({required String text, required int value, bool isFreeText = false, String? detailText})
Default constructor.
RPChoice.fromJson(Map<String, dynamic> json)
factory

Properties

$type String?
The runtime class name (type) of this object. Used for deserialization from JSON objects.
getter/setter pairinherited
detailText String?
The detailed text to show if needed. Shown as a Info-icon which takes the user to a detail page with the detailText
getter/setter pair
fromJsonFunction Function
The function which can convert a JSON string to an object of this type.
no setteroverride
hashCode int
The hash code for this object.
no setterinherited
isFreeText bool
If set to true, then the user can enter the text instead of the default text which was provided. The value remains the same. By default it is set to false. text will be shown as a hintText
getter/setter pair
jsonType String
Return the __type to be used for JSON serialization of this class. Default is runtimeType. Only specify this if you need another type.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
text String
The text to display.
getter/setter pair
value int
The value of this choice - for example 4 on a 0-5 scale.
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Return a JSON encoding of this object.
override
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited