FFActionCondition constructor
FFActionCondition({
- FFVariable? variable,
- FFConfirmationDialogResponse? confirmationDialogResponse,
- FFRevenueCatEntitlementResponse? revenueCatEntitlementResponse,
Implementation
factory FFActionCondition({
FFVariable? variable,
FFConfirmationDialogResponse? confirmationDialogResponse,
FFRevenueCatEntitlementResponse? revenueCatEntitlementResponse,
}) {
final result = create();
if (variable != null) result.variable = variable;
if (confirmationDialogResponse != null)
result.confirmationDialogResponse = confirmationDialogResponse;
if (revenueCatEntitlementResponse != null)
result.revenueCatEntitlementResponse = revenueCatEntitlementResponse;
return result;
}