CardItem constructor

const CardItem({
  1. Key? key,
  2. String? name,
  3. String? value,
  4. bool showCopyButton = false,
})

Implementation

const CardItem({Key? key, this.name, this.value, this.showCopyButton = false})
    : super(key: key);