TextArea constructor

const TextArea({
  1. required Rect bounds,
  2. required String text,
  3. required Color color,
})

Implementation

const TextArea({
  required this.bounds,
  required this.text,
  required this.color,
});