modify method
ViewRoots
modify(
{ - bool? ripple,
- bool? position,
- bool? flex,
- bool? ratio,
- bool? clickable,
- bool? view,
- bool? constraints,
- bool? margin,
- bool? padding,
- bool? decoration,
- bool? shadow,
- bool? shape,
- bool? radius,
- bool? border,
- bool? background,
})
Implementation
ViewRoots modify({
bool? ripple,
bool? position,
bool? flex,
bool? ratio,
bool? clickable,
bool? view,
bool? constraints,
bool? margin,
bool? padding,
bool? decoration,
bool? shadow,
bool? shape,
bool? radius,
bool? border,
bool? background,
}) {
return ViewRoots(
position: position ?? this.position,
flex: flex ?? this.flex,
ratio: ratio ?? this.ratio,
clickable: clickable ?? this.clickable,
view: view ?? this.view,
constraints: constraints ?? this.constraints,
margin: margin ?? this.margin,
padding: padding ?? this.padding,
decoration: decoration ?? this.decoration,
shadow: shadow ?? this.shadow,
shape: shape ?? this.shape,
radius: radius ?? this.radius,
border: border ?? this.border,
background: background ?? this.background,
);
}