MephistoOutlinedButton constructor

const MephistoOutlinedButton({
  1. Key? key,
  2. required String text,
  3. required Function onClick,
  4. String? variant = "lg",
  5. bool? isDisabled = false,
  6. bool? isLoading = false,
  7. Color? outlineColor,
})

Implementation

const MephistoOutlinedButton(
    {super.key,
    required this.text,
    required this.onClick,
    this.variant = "lg",
    this.isDisabled = false,
    this.isLoading = false,
    this.outlineColor});