Creates a RxFuture from a future. {@tool snippet}
future
final rxValue = RxFuture.of(futureValue);
{@end-tool}
static RxFuture<T> of<T>(Future<T> future) => RxFuture._(future);