BankPlanTier constructor

const BankPlanTier({
  1. required String id,
  2. required String name,
  3. required Money monthlyPrice,
  4. required List<BankPlanFeature> features,
  5. String? tagline,
  6. BankCardMaterial? material,
  7. Color? accentColor,
})

Implementation

const BankPlanTier({
  required this.id,
  required this.name,
  required this.monthlyPrice,
  required this.features,
  this.tagline,
  this.material,
  this.accentColor,
});