shareLoyaltyInvitationPng static method
Implementation
static shareLoyaltyInvitationPng({
required BuildContext context,
}) {
final authController = Get.find<AuthenticationController>();
generatePng(
context: context,
widget: InvitationCard(parentContext: context, isGenerating: true,),
refCode: authController.referralCode ?? '',
customSize: const Size(495, 620),
);
}