create<T> function
Creates an Observable that uses the provided callback
to emit elements
to the provided Observer on each subscribe.
Implementation
Observable<T> create<T>(Callback1<Subscriber<T>> callback) =>
CreateObservable<T>(callback);