I created Stripe payment gateway with flutter it is working on test mode now, I want to change to Live Mode ( I've updated the publishableKey and the secret ) in the StripeOptions() I must change androidPayMode and merchantId ?, if should change then how it do? I can't find anything related to that.
static init() {
StripePayment.setOptions(StripeOptions(
publishableKey:
"my key",
merchantId: "Test",
androidPayMode: 'test'));
}