NegativeOutlineButton constructor

const NegativeOutlineButton({
  1. Key? key,
  2. required dynamic text,
  3. required VoidCallback onPress,
})

Implementation

const NegativeOutlineButton(
    {Key? key, required this.text, required this.onPress})
    : super(key: key);