IdentityStyle constructor

const IdentityStyle({
  1. Color? buttonBackgroundColor,
  2. Color? buttonTextColor,
  3. String? buttonLabel,
  4. String? navigationBarTitle,
})

Creates an IdentityStyle configuration.

All parameters are optional. If not provided, the Stripe SDK defaults will be used.

Implementation

const IdentityStyle({
  this.buttonBackgroundColor,
  this.buttonTextColor,
  this.buttonLabel,
  this.navigationBarTitle,
});