MaterialXButton constructor

const MaterialXButton(
  1. {Key key,
  2. @required Color color,
  3. @required Widget child,
  4. @required Function onTap,
  5. double rounded,
  6. @required double width,
  7. @required double height,
  8. double elavation,
  9. double spreadRadius}
)

Implementation

const MaterialXButton(
    {Key key,
    @required this.color,
    @required this.child,
    @required this.onTap,
    this.rounded,
    @required this.width,
    @required this.height,
    this.elavation,
    this.spreadRadius})
    : super(key: key);