merge method

  1. @override
NestedStyleAttribute merge(
  1. covariant NestedStyleAttribute? other
)
override

Merges this object with other, returning a new object of type T.

Implementation

@override
NestedStyleAttribute merge(NestedStyleAttribute? other) {
  return other == null
      ? this
      : NestedStyleAttribute(value.merge(other.value));
}