AdminBillingOverviewResponse constructor

const AdminBillingOverviewResponse({
  1. required AdminSubscriptionResponse? subscription,
  2. required List<AdminPaymentResponse> payments,
  3. required List<AdminPaymentMethodResponse> paymentMethods,
  4. required String? stripeCustomerId,
})

Implementation

const AdminBillingOverviewResponse({
  required this.subscription,
  required this.payments,
  required this.paymentMethods,
  required this.stripeCustomerId,
});