LineButton constructor

const LineButton({
  1. Key? key,
  2. Color? lineColor,
  3. required String title,
  4. required Function onPressed,
  5. Color? textColor,
})

Implementation

const LineButton(
    {Key? key,
    this.lineColor,
    required this.title,
    required this.onPressed,
    this.textColor})
    : super(key: key);