ContactCard constructor

ContactCard({
  1. Key? key,
  2. String type = 'add',
  3. String? name,
  4. String? tel,
  5. bool editAble = true,
  6. dynamic onClick()?,
})

Implementation

ContactCard(
    {Key? key,
    this.type: 'add',
    this.name,
    this.tel,
    this.editAble: true,
    this.onClick})
    : super(key: key);