Class HeadConfig

  • All Implemented Interfaces:

    
    public abstract class HeadConfig
    
                        

    Module configuration, enable and modify the behaviour of some features.

    To use this class you need to create a new class and extend HeadConfig or use a kotlin object, then modify the required variables in init.

    <b>Sample usage</b>

    object: HeadConfig() {
       init {
          isRecentsAvailable = true
          isSearchAvailable = true
          ...
       }
    }