resolveCustomEditor property

FutureOr<void> Function(T, WebviewPanel, CancellationToken) get resolveCustomEditor

Implementation

_i4.FutureOr<void> Function(
  T,
  _i3.WebviewPanel,
  _i3.CancellationToken,
) get resolveCustomEditor => (
      T p0,
      _i3.WebviewPanel p1,
      _i3.CancellationToken p2,
    ) =>
        _i5.callMethod(
          _i5.getProperty(
            this,
            'resolveCustomEditor',
          ),
          r'call',
          [
            this,
            p0,
            p1,
            p2,
          ],
        );
set resolveCustomEditor (FutureOr<void> value(T, WebviewPanel, CancellationToken))

Implementation

set resolveCustomEditor(
    _i4.FutureOr<void> Function(
      T,
      _i3.WebviewPanel,
      _i3.CancellationToken,
    ) value) {
  _i5.setProperty(
    this,
    'resolveCustomEditor',
    _i5.allowInterop((
      p0,
      p1,
      p2,
    ) =>
        _i6.Promise.futureOr(() => value(
              p0,
              p1,
              p2,
            ))),
  );
}