ShadowCard constructor

ShadowCard({
  1. required Widget child,
  2. Color color = const Color(0xfffafafa),
  3. Color shadowColor = const Color(0xffeeeeee),
  4. EdgeInsetsGeometry padding = const EdgeInsets.all(0),
  5. double circular = 4.0,
  6. double blurRadius = 5.0,
  7. double spreadRadius = 0,
  8. Offset offset = Offset.zero,
  9. double borderWidth = 0.5,
})

create BrnShadowCard

Implementation

ShadowCard(
    {required this.child,
    this.color = const Color(0xfffafafa),
    this.shadowColor = const Color(0xffeeeeee),
    this.padding = const EdgeInsets.all(0),
    this.circular = 4.0,
    this.blurRadius = 5.0,
    this.spreadRadius = 0,
    this.offset = Offset.zero,
    this.borderWidth = 0.5});