RPChoice.withParams constructor

RPChoice.withParams(String text, dynamic value)

Default constructor with detailText set to null.

Implementation

RPChoice.withParams(String text, dynamic value) {
  this._text = text;
  this._value = value;
  this._detailText = null;
}