InfoShareRF constructor

const InfoShareRF({
  1. dynamic key,
  2. Icon? icon,
  3. int count = 0,
  4. bool show = true,
  5. Function? builder,
  6. Function? onTap,
})

Implementation

const InfoShareRF(
    {key,
    this.icon,
    this.count = 0,
    this.show = true,
    this.builder,
    this.onTap})
    : super(key: key);