BankPlanTier constructor
const
BankPlanTier({
- required String id,
- required String name,
- required Money monthlyPrice,
- required List<
BankPlanFeature> features, - String? tagline,
- BankCardMaterial? material,
- Color? accentColor,
Implementation
const BankPlanTier({
required this.id,
required this.name,
required this.monthlyPrice,
required this.features,
this.tagline,
this.material,
this.accentColor,
});