withShadow method

VxAnimatedBox withShadow(
  1. List<BoxShadow> shadows
)

To give custom shadow.

Implementation

VxAnimatedBox withShadow(List<BoxShadow> shadows) {
  _boxShadow = shadows;
  return this;
}