call method
T
call({})
Implementation
T call({
Color? color,
BoxBorder? border,
BorderRadiusGeometry? borderRadius,
Gradient? gradient,
List<BoxShadow>? boxShadow,
BoxShape? shape,
BlendMode? backgroundBlendMode,
}) {
return only(
color: color?.toDto(),
border: border?.toDto(),
borderRadius: borderRadius?.toDto(),
gradient: gradient?.toDto(),
boxShadow: boxShadow?.map((e) => e.toDto()).toList(),
shape: shape,
backgroundBlendMode: backgroundBlendMode,
);
}