SupportCard constructor

const SupportCard({
  1. Key? key,
  2. required String phoneNumber,
  3. required String email,
  4. required String ticketUrl,
})

Implementation

const SupportCard({
  super.key,
  required this.phoneNumber,
  required this.email,
  required this.ticketUrl,
});