InnerShadowBGCar constructor

const InnerShadowBGCar({
  1. Key? key,
  2. @required Widget? child,
  3. EdgeInsetsGeometry? margin,
  4. EdgeInsetsGeometry? padding,
  5. bool isWhite = false,
  6. bool isDarkTheme = false,
})

Implementation

const InnerShadowBGCar(
    {Key? key,
    @required this.child,
    this.margin,
    this.padding,
    this.isWhite = false,
    this.isDarkTheme = false})
    : super(key: key);