L_elevation_button constructor

L_elevation_button({
  1. required double height,
  2. required double width,
  3. required MaterialStateProperty<double> elevation,
  4. required VoidCallback onPressed,
  5. required MaterialStateProperty<Color> primarycolor,
  6. FocusNode? focusNode,
  7. bool? focus,
  8. required String text,
  9. Color? textcolor,
  10. double? textsize,
  11. FontWeight? fontWeight,
  12. Key? key,
})

Implementation

L_elevation_button(
    {required this.height,
    required this.width,
    required this.elevation,
    required this.onPressed,
    required this.primarycolor,
    this.focusNode,
    this.focus,
    required this.text,
    this.textcolor,
    this.textsize,
    this.fontWeight,
    Key? key})
    : super(key: key);