GrxCard constructor

GrxCard({
  1. Key? key,
  2. bool borderOnForeground = true,
  3. Widget? child,
  4. Clip? clipBehavior,
  5. Color? color,
  6. double? elevation = 0.0,
  7. EdgeInsetsGeometry? margin,
  8. bool semanticContainer = true,
  9. Color? shadowColor,
  10. Color? surfaceTintColor = Colors.transparent,
})

Implementation

GrxCard({
  super.key,
  super.borderOnForeground,
  super.child,
  super.clipBehavior,
  super.color,
  super.elevation = 0.0,
  super.margin,
  super.semanticContainer,
  super.shadowColor,
  super.surfaceTintColor = Colors.transparent,
}) : super(
       shape: RoundedRectangleBorder(
         borderRadius: BorderRadius.circular(8.0),
       ),
     );