requestConsentWithStyle method
Implementation
Future<void> requestConsentWithStyle({
required int textColor,
required int linksColor,
required int primaryColor,
required int secondColor,
}) {
return PacketSdkPlatform.instance.requestConsentWithStyle(
textColor: textColor,
linksColor: linksColor,
primaryColor: primaryColor,
secondColor: secondColor,
);
}