DigitListView constructor

const DigitListView({
  1. Key? key,
  2. IconData? prefixIcon,
  3. required String title,
  4. String? description,
  5. IconData? sufixIcon,
  6. VoidCallback? onPressed,
})

Implementation

const DigitListView({
  super.key,
  this.prefixIcon,
  required this.title,
  this.description,
  this.sufixIcon,
  this.onPressed,
});