AnimatedMessageButton constructor

const AnimatedMessageButton({
  1. required VoidCallback onPressed,
  2. double width = 140,
  3. double height = 40,
  4. String? text,
  5. Key? key,
})

Implementation

const AnimatedMessageButton({
  required this.onPressed,
  this.width = 140,
  this.height = 40,
  this.text,
  super.key,
});