modify method

ViewRoots modify({
  1. bool? ripple,
  2. bool? position,
  3. bool? flex,
  4. bool? ratio,
  5. bool? clickable,
  6. bool? view,
  7. bool? constraints,
  8. bool? margin,
  9. bool? padding,
  10. bool? decoration,
  11. bool? shadow,
  12. bool? shape,
  13. bool? radius,
  14. bool? border,
  15. 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,
  );
}