NormalPinkButton constructor

const NormalPinkButton({
  1. Key? key,
  2. String? text,
  3. void onPressed()?,
})

Implementation

const NormalPinkButton({Key? key, this.text, this.onPressed})
    : super(key: key);