DataRepositoryHttp<T>.fromConfig constructor

DataRepositoryHttp<T>.fromConfig(
  1. String domain,
  2. String name,
  3. HttpCall httpConfigSource,
  4. HttpCall httpConfigReceiver,
)

Implementation

DataRepositoryHttp.fromConfig(String domain, String name,
    HttpCall httpConfigSource, HttpCall httpConfigReceiver)
    : httpConfigSource = DataCallHttp.from(httpConfigSource),
      httpConfigReceiver = DataCallHttp.from(httpConfigReceiver),
      super(domain, name);