Rest constructor

Rest({
  1. required ClientOptions options,
})

Construct a Rest object using an Ably options object.

Implementation

Rest({required this.options}) : super() {
  channels = RestChannels(this);
  push = Push(rest: this);
  auth = RestAuth(this);
}