TransferServerService constructor

TransferServerService(
  1. String _transferServiceAddress, {
  2. Client? httpClient,
})

Implementation

TransferServerService(this._transferServiceAddress,
    {http.Client? httpClient}) {
  if (httpClient != null) {
    this.httpClient = httpClient;
  } else {
    this.httpClient = http.Client();
  }
}