MyOutlinedButton constructor

const MyOutlinedButton({
  1. Key? key,
  2. required void onTap(),
  3. String? text,
})

Implementation

const MyOutlinedButton({super.key, required this.onTap, this.text});