Gateway constructor

Gateway({
  1. required Api api,
  2. String? endpoint,
})

Implementation

Gateway({
  required Api api,
  String? endpoint,
}) {
  _api = api;
  _endpoint = endpoint;
}