AppHttpClient constructor

AppHttpClient(
  1. String _key,
  2. String _scheme,
  3. String _server,
  4. int port,
)

Implementation

AppHttpClient(this._key, this._scheme, this._server, this.port) {
  headers = {
    'Origin': 'app',
    'Content-Type': 'application/json; charset=UTF-8',
    'db-key': _key,
  };
}