ElepayConfiguration constructor

ElepayConfiguration(
  1. String publicKey, {
  2. String remoteHostBaseUrl = "",
  3. GooglePayEnvironment? googlePayEnvironment,
  4. ElepayLanguageKey? languageKey,
  5. ElepayTheme? theme,
})

Construct the configuation data.

Only the publicKey field is required. Others are all optional.

Implementation

ElepayConfiguration(this.publicKey,
    {this.remoteHostBaseUrl = "",
    this.googlePayEnvironment,
    this.languageKey,
    this.theme});