SecondaryButtton constructor

const SecondaryButtton({
  1. Key? key,
  2. required String title,
  3. required Function onPressed,
})

Implementation

const SecondaryButtton(
    {Key? key, required this.title, required this.onPressed})
    : super(key: key);