KYCService constructor

KYCService(
  1. String _serviceAddress, {
  2. Client? httpClient,
})

Implementation

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