set method

NikuFlatButton set({
  1. VoidCallback? onPressed,
  2. VoidCallback? onLongPressed,
  3. double pt = 0,
  4. double pb = 0,
  5. double pl = 0,
  6. double pr = 0,
  7. double mt = 0,
  8. double mb = 0,
  9. double ml = 0,
  10. double mr = 0,
  11. Color? color,
  12. Color? disabledColor,
  13. Color? focusColor,
  14. Color? hoverColor,
  15. Color? highlightColor,
  16. Color? splashColor,
  17. Color? textColor,
  18. Brightness? colorBrightness,
  19. ShapeBorder? shape,
  20. Clip clipBehavior = Clip.antiAlias,
  21. double? height,
  22. bool autofocus = false,
  23. double? minWidth,
  24. ButtonTextTheme? buttonTextTheme,
})

Implementation

NikuFlatButton set(
    {VoidCallback? onPressed,
    VoidCallback? onLongPressed,
    double pt = 0,
    double pb = 0,
    double pl = 0,
    double pr = 0,
    double mt = 0,
    double mb = 0,
    double ml = 0,
    double mr = 0,
    Color? color,
    Color? disabledColor,
    Color? focusColor,
    Color? hoverColor,
    Color? highlightColor,
    Color? splashColor,
    Color? textColor,
    Brightness? colorBrightness,
    ShapeBorder? shape,
    Clip clipBehavior = Clip.antiAlias,
    double? height,
    bool autofocus = false,
    double? minWidth,
    ButtonTextTheme? buttonTextTheme}) {
  this._onPressed = onPressed;
  this._onLongPressed = onLongPressed;
  this._pt = pt;
  this._pb = pb;
  this._pl = pl;
  this._pr = pr;
  this._mt = mt;
  this._mb = mb;
  this._ml = ml;
  this._mr = mr;
  this._color = color;
  this._disabledColor = disabledColor;
  this._focusColor = focusColor;
  this._hoverColor = hoverColor;
  this._highlightColor = highlightColor;
  this._splashColor = splashColor;
  this._textColor = textColor;
  this._colorBrightness = colorBrightness;
  this._shape = shape;
  this._clipBehavior = clipBehavior;
  this._minWidth = minWidth;
  this._height = height;
  this._autofocus = autofocus;
  this._buttonTextTheme = buttonTextTheme;

  return this;
}