copyWith method
MixData
copyWith({
- AttributeMap<
Attribute> ? attributes, - AnimatedData? animation,
- MixTokenResolver? resolver,
Implementation
MixData copyWith({
AttributeMap? attributes,
AnimatedData? animation,
MixTokenResolver? resolver,
}) {
return MixData._(
resolver: resolver ?? _tokenResolver,
attributes: attributes ?? _attributes,
animation: animation ?? this.animation,
);
}