ViewAllButton constructor

const ViewAllButton({
  1. Key? key,
  2. String title = 'View All',
  3. VoidCallback? onPressed,
})

Implementation

const ViewAllButton({Key? key, this.title = 'View All', this.onPressed})
    : super(key: key);