BaseService

abstract class BaseService(context: Context) : KoinScopeComponent, CoroutineScope

An abstract class representing a base service.

Parameters

context

The context used for initialization and performing operations.

Inheritors

Constructors

Link copied to clipboard
constructor(context: Context)

Functions

Link copied to clipboard
open override fun getKoin(): Koin

Retrieves the Koin instance used by the service.

Properties

Link copied to clipboard

The coroutine context used by the service for performing asynchronous operations.

Link copied to clipboard
open override val scope: Scope