FoundRtlWidget constructor

FoundRtlWidget({
  1. required String filePath,
  2. required int offset,
  3. required int length,
  4. required String msg,
  5. required String error,
  6. required String fix,
  7. int? startLine,
  8. int? startColumn,
  9. int? endLine,
  10. int? endColumn,
})

Implementation

FoundRtlWidget(
    {required this.filePath,
    required this.offset,
    required this.length,
    required this.msg,
    required this.error,
    required this.fix,
    this.startLine,
    this.startColumn,
    this.endLine,
    this.endColumn});