FInnerShadow constructor

FInnerShadow({
  1. Key? key,
  2. double blur = 10,
  3. Color color = FInnerShadowColor,
  4. Offset offset = FInnerShadowOffset,
  5. Widget? child,
})

Implementation

FInnerShadow({
  Key? key,
  this.blur = 10,
  this.color = FInnerShadowColor,
  this.offset = FInnerShadowOffset,
  Widget? child,
}) : super(key: key, child: child);