UserActionState constructor

UserActionState({
  1. Map<String, dynamic>? customData,
  2. UserAction? userAction,
})

Creates a new UserActionState instance.

customData - Custom data associated with the user action. userAction - The user action.

Implementation

UserActionState({
  this.customData,
  this.userAction,
});