FunctionButton constructor

const FunctionButton({
  1. Key? key,
  2. required String title,
  3. required Color borderColor,
  4. required Color buttonColor,
})

Implementation

const FunctionButton({
  super.key,
  required this.title,
  required this.borderColor,
  required this.buttonColor,
});