buildDecoratedShadowedShape method

Widget buildDecoratedShadowedShape({
  1. required Widget child,
})

Implementation

Widget buildDecoratedShadowedShape({required Widget child}) {
  return DecoratedShadowedShape(
      decoration: backgroundDecoration,
      shape: shapeBorder,
      shadows: shadows,
      insetShadows: insetShadows,
      child: child);
}