replaceChild property

T Function<T extends Node>(Node, T) replaceChild

Implementation

T Function<T extends _i3.Node>(
  _i3.Node,
  T,
) get replaceChild => <T extends _i3.Node>(
      _i3.Node p0,
      T p1,
    ) =>
        _i4.callMethod(
          _i4.getProperty(
            this,
            'replaceChild',
          ),
          r'call',
          [
            this,
            p0,
            p1,
          ],
        );
void replaceChild=(T value<T extends Node>(Node, T))

Implementation

set replaceChild(
    T Function<T extends _i3.Node>(
      _i3.Node,
      T,
    ) value) {
  _i4.setProperty(
    this,
    'replaceChild',
    _i4.allowInterop(value),
  );
}