AddressCard constructor
const
AddressCard({
- Key? key,
- required String label,
- required String fullAddress,
- required String phoneNumber,
- bool isDefault = false,
- VoidCallback? onEdit,
- VoidCallback? onDelete,
- VoidCallback? onTap,
Implementation
const AddressCard({
super.key,
required this.label,
required this.fullAddress,
required this.phoneNumber,
this.isDefault = false,
this.onEdit,
this.onDelete,
this.onTap,
});