withShadow method

VxBox withShadow(
  1. List<BoxShadow> shadows
)

Provide custom list of box shadows

To give custom shadow.

Implementation

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