NiceBusinessCard constructor

const NiceBusinessCard({
  1. Key? key,
  2. required String name,
  3. NiceBusinessType type = NiceBusinessType.company,
  4. String? subtitle,
  5. String? email,
  6. String? phone,
  7. String? website,
  8. String? address,
  9. ImageProvider<Object>? avatar,
  10. VoidCallback? onTap,
  11. List<Widget>? actions,
  12. List<String>? tags,
})

Implementation

const NiceBusinessCard({
  super.key,
  required this.name,
  this.type = NiceBusinessType.company,
  this.subtitle,
  this.email,
  this.phone,
  this.website,
  this.address,
  this.avatar,
  this.onTap,
  this.actions,
  this.tags,
});