PaddingEffect constructor
const
PaddingEffect({})
Implementation
const PaddingEffect({
required this.padding,
super.delay,
super.duration,
super.curve,
double? begin,
double? end,
}) : super(
begin: begin ?? (end == null ? defaultValue : neutralValue),
end: end ?? neutralValue,
);