KCard constructor

KCard({
  1. Key? key,
  2. String? id,
  3. KSize? size,
  4. KTheme? themeColor,
  5. void onTap()?,
  6. Widget? child,
  7. ImageProvider<Object>? background,
  8. double? height,
  9. double? width,
})

Implementation

KCard({
    Key? key,
    this.id,
    this.size,
    this.themeColor,

    this.onTap,
    this.child,
    this.background,
    this.height,
    this.width,
  }) : super(key: key);