stripeAccountId property

String? get stripeAccountId

Retrieves the id associate with the Stripe account.

Implementation

static String? get stripeAccountId => instance._stripeAccountId;
set stripeAccountId (String? value)

Sets the account id that is generated when creating a Stripe account.

Implementation

static set stripeAccountId(String? value) {
  if (value == instance._stripeAccountId) {
    return;
  }
  instance._stripeAccountId = value;
  instance.markNeedsSettings();
}