provideInlayHints property
      
      FutureOr<List<T> >  Function(TextDocument, Range, CancellationToken)
      get
      provideInlayHints
      
    
    
    
Implementation
_i4.FutureOr<_i2.List<T>> Function(
  _i3.TextDocument,
  _i3.Range,
  _i3.CancellationToken,
) get provideInlayHints => (
      _i3.TextDocument p0,
      _i3.Range p1,
      _i3.CancellationToken p2,
    ) =>
        _i5.callMethod(
          _i5.getProperty(
            this,
            'provideInlayHints',
          ),
          r'call',
          [
            this,
            p0,
            p1,
            p2,
          ],
        );
      
      set
      provideInlayHints
      (FutureOr<List<T> >  value(TextDocument, Range, CancellationToken)) 
      
    
    
    
Implementation
set provideInlayHints(
    _i4.FutureOr<_i2.List<T>> Function(
      _i3.TextDocument,
      _i3.Range,
      _i3.CancellationToken,
    ) value) {
  _i5.setProperty(
    this,
    'provideInlayHints',
    _i5.allowInterop((
      p0,
      p1,
      p2,
    ) =>
        _i6.Promise.futureOr(() => value(
              p0,
              p1,
              p2,
            ))),
  );
}