InAppNotificationViewBinderFactory
Factory for creating view binders.
Defines a factory interface for creating instances of InAppNotificationViewBinder. This interface encapsulates the logic required to instantiate view binders for in-app notification views, ensuring that the creation of these views is managed centrally and can be easily modified or extended.
Syntax: interface InAppNotificationViewBinderFactory : Factory<InAppNotificationViewBinder>
Inheritors
Properties
Name | Description |
---|---|
displayType | abstract val displayType: DisplayType? This property is used to get the type of the In-App Notification view that will be displayed |
Functions
Name | Description |
---|---|
create | Creates a new InAppNotificationViewBinder instance for banner InApp notification. |
create
Creates a new InAppNotificationViewBinder instance for banner InApp notification.
Syntax: abstract fun create(): InAppNotificationViewBinder
Updated 8 days ago