CurrencyCloudClient constructor

CurrencyCloudClient(
  1. String loginId,
  2. String apiKey, {
  3. bool useLiveUri = false,
})

Provide true for useLiveUri if you want to use this client in production and trigger real money transfers

Implementation

CurrencyCloudClient(this.loginId, this.apiKey, {bool useLiveUri = false})
    : baseUri = useLiveUri ? liveUri : devUri;