From 85393c566d8ebfa02c691e1ee1b69a5a313b498f Mon Sep 17 00:00:00 2001 From: Bryan Oltman Date: Fri, 7 Nov 2025 14:50:23 -0500 Subject: [PATCH] chore(stripe_api): make StripeBillingMeter constructor const --- packages/stripe_api/lib/src/models/stripe_billing_meter.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/stripe_api/lib/src/models/stripe_billing_meter.dart b/packages/stripe_api/lib/src/models/stripe_billing_meter.dart index cb833d88..adb68c29 100644 --- a/packages/stripe_api/lib/src/models/stripe_billing_meter.dart +++ b/packages/stripe_api/lib/src/models/stripe_billing_meter.dart @@ -10,7 +10,7 @@ part 'stripe_billing_meter.g.dart'; @JsonSerializable(createToJson: false) class StripeBillingMeter { /// {@macro stripe_billing_meter} - StripeBillingMeter({ + const StripeBillingMeter({ required this.id, required this.displayName, required this.eventName,