DetailsButtonItem constructor

const DetailsButtonItem({
  1. Key? key,
  2. required Function onPressed,
  3. required String title,
  4. Color? textColor,
  5. Color? backgroundColor,
})

Implementation

const DetailsButtonItem(
    {super.key,
    required this.onPressed,
    required this.title,
    this.textColor,
    this.backgroundColor});