UIInputText constructor

UIInputText({
  1. int elementId = 0,
  2. List<String> labels = const [],
  3. String styleId = '',
  4. String name = '',
  5. String updateActionId = '',
  6. UIColor color = UIColor.default_,
  7. UIInputVariant variant = UIInputVariant.outlined,
  8. int rows = 1,
  9. String initialValue = '',
  10. String submitActionId = '',
})

Implementation

UIInputText({
    this.elementId = 0,
    this.labels = const [],
    this.styleId = '',
    this.name = '',
    this.updateActionId = '',
    this.color = UIColor.default_,
    this.variant = UIInputVariant.outlined,
    this.rows = 1,
    this.initialValue = '',
    this.submitActionId = '',
});