PrimaryLineButton constructor

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

Implementation

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