ContextButton constructor

const ContextButton({
  1. Key? key,
  2. required String text,
  3. required Color textColor,
  4. required Color backgroundColor,
})

Implementation

const ContextButton({
  super.key,
  required this.text,
  required this.textColor,
  required this.backgroundColor,
});