HoverInformation constructor

HoverInformation(
  1. int offset,
  2. int length, {
  3. String? containingLibraryPath,
  4. String? containingLibraryName,
  5. String? containingClassDescription,
  6. String? dartdoc,
  7. String? elementDescription,
  8. String? elementKind,
  9. bool? isDeprecated,
  10. String? parameter,
  11. String? propagatedType,
  12. String? staticType,
})

Implementation

HoverInformation(this.offset, this.length,
    {this.containingLibraryPath,
    this.containingLibraryName,
    this.containingClassDescription,
    this.dartdoc,
    this.elementDescription,
    this.elementKind,
    this.isDeprecated,
    this.parameter,
    this.propagatedType,
    this.staticType});