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

Link copied to clipboard
fun Factory()

Functions

Link copied to clipboard
abstract fun create(context: Context, lifecycle: LifecycleOwner?): Balloon

Creates a new instance of Balloon.