FormEvent
public enum FormEvent
Represents events triggered by the card details entry form.
Used in card views as a callback message to communicate user actions or form status updates.
-
Indicates that the form or a specific field within the form was selected.
Declaration
Swift
case selection -
Indicates whether the data in the form are fully filled and completed.
Declaration
Swift
case completion(isComplete: Bool)Parameters
isCompleteA Boolean value that specifies if the form is complete.
truemeans the form is completed, andfalsemeans it is not.