NormalBlueButton constructor

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

Implementation

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