FilterGenericCard constructor

const FilterGenericCard({
  1. Key? key,
  2. String? text,
  3. bool enabled = false,
  4. dynamic onTap()?,
})

Implementation

const FilterGenericCard(
    {Key? key, this.text, this.enabled = false, this.onTap})
    : super(key: key);