Composer constructor

Composer({
  1. required String sourceText,
  2. required List<Detection?> detections,
  3. required TextRange composing,
  4. required int selection,
  5. required TextStyle detectedStyle,
})

Implementation

Composer({
  required this.sourceText,
  required this.detections,
  required this.composing,
  required this.selection,
  required this.detectedStyle,
});