combine method

  1. @override
NestedStyleRule combine(
  1. Styles styles
)
override

Combines the current styles with another Styles instances.

Implementation

@override
NestedStyleRule combine(Styles styles) {
  return NestedStyleRule._(_selector, _styles.combine(styles), _children);
}