Factory

abstract class Factory

An abstract factory class for creating Balloon instance. A factory implementation class must have a default (non-argument) constructor. This class is used to initialize an instance of the Balloon lazily in Activities and Fragments.

See also

Constructors

Factory
Link copied to clipboard
fun Factory()

Functions

create
Link copied to clipboard
abstract fun create(context: Context, lifecycle: LifecycleOwner?): Balloon
Creates a new instance of Balloon.