RoundedButton constructor

RoundedButton(
  1. Widget child, {
  2. double width = 260,
  3. double height = 28,
  4. double borderRadius = 20,
  5. Color backgroundColor = Colors.transparent,
  6. String? customShape,
  7. Key? key,
})

Implementation

RoundedButton(this.child, {this.width = 260, this.height = 28, this.borderRadius = 20, this.backgroundColor = Colors.transparent, this.customShape, Key? key}) : super(key: key);