set method
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,
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;
}