appListCard constructor

appListCard({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsetsGeometry? margin,
  4. EdgeInsetsGeometry? padding,
  5. Function? onTap,
  6. Color? color,
  7. Clip? clip,
})

Implementation

appListCard(
    {Key? key,
    required this.child,
    this.margin,
    this.padding,
    this.onTap,
    this.color,
    this.clip})
    : super(key: key);