call method
Creates a new Attribute with the specified properties.
Any properties not specified will retain their current values.
Implementation
T call({
Color? color,
Offset? offset,
double? blurRadius,
double? spreadRadius,
}) {
return only(
color: color?.toDto(),
offset: offset,
blurRadius: blurRadius,
spreadRadius: spreadRadius,
);
}