TextBox constructor

TextBox(
  1. String text,
  2. Offset position, {
  3. double width = 100,
  4. double height = 50,
  5. double fontSize = 12,
  6. Color? color,
})

Implementation

TextBox(
  this.text,
  this.position, {
  this.width = 100,
  this.height = 50,
  this.fontSize = 12,
  this.color,
});