TaggedCard constructor

const TaggedCard(
  1. Widget child,
  2. {Key? key,
  3. void onTap(
      )?,
    1. String? tag,
    2. void onLongPress(
        )?,
      1. bool selected = false}
      )

      Implementation

      const TaggedCard(this.child,
          {super.key,
          this.onTap,
          this.tag,
          this.onLongPress,
          this.selected = false});