NiceBusinessCard constructor
const
NiceBusinessCard({ - Key? key,
- required String name,
- NiceBusinessType type = NiceBusinessType.company,
- String? subtitle,
- String? email,
- String? phone,
- String? website,
- String? address,
- ImageProvider<Object>? avatar,
- VoidCallback? onTap,
- List<Widget>? actions,
- 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,
});