from static method

Disposable from([
  1. Iterable? disposableLikes
])

Combine many disposable-likes into one. You can use this method when having objects with a dispose function which aren't instances of Disposable.

Implementation

static _i3.Disposable from([_i2.Iterable<_i2.dynamic>? disposableLikes]) =>
    _i5.callMethod(
      _declaredDisposable,
      'from',
      [...?disposableLikes],
    );