TextEdit constructor

TextEdit({
  1. required Range range,
  2. required String text,
})

Implementation

TextEdit({
  required this.range,
  required this.text,
});