Editor constructor

Editor({
  1. double? left,
  2. double? top,
  3. double? width,
  4. double? height,
  5. bool? multiline,
  6. EditorLabelPositionEnum? labelPosition,
  7. bool? readOnly,
  8. Object? defaultValue,
  9. String? key,
})

Returns a new Editor instance.

Implementation

Editor({
  this.left,
  this.top,
  this.width,
  this.height,
  this.multiline,
  this.labelPosition,
  this.readOnly,
  this.defaultValue,
  this.key,
});