Skip to content

Instantly share code, notes, and snippets.

@halilozel1903
Created November 6, 2022 14:37
Show Gist options
  • Save halilozel1903/31bedb74be88a34d6fe6a13b3360918d to your computer and use it in GitHub Desktop.
Save halilozel1903/31bedb74be88a34d6fe6a13b3360918d to your computer and use it in GitHub Desktop.
companion object {
private var instance: BusinessManager? = null
fun getInstance(): BusinessManager {
if (instance == null) {
instance = BusinessManager()
}
return instance as BusinessManager
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment