ServiceAgreementTileState constructor

const ServiceAgreementTileState({
  1. required String subtitle,
  2. required Widget statusLabel,
  3. required Color statusBgColor,
  4. Color? cardBackground,
  5. bool? isExpired,
})

Implementation

const ServiceAgreementTileState({
  required this.subtitle,
  required this.statusLabel,
  required this.statusBgColor,
  this.cardBackground,
  this.isExpired,
});