Skip to content

Instantly share code, notes, and snippets.

@Ochornma
Created April 25, 2021 18:32
Show Gist options
  • Select an option

  • Save Ochornma/f88d813dce4ec9568c7fd97ac9f144ef to your computer and use it in GitHub Desktop.

Select an option

Save Ochornma/f88d813dce4ec9568c7fd97ac9f144ef to your computer and use it in GitHub Desktop.
@Suppress("UNCHECKED_CAST")
class VerifyBVNFactory(
private val repository: SoftKashRepository
): ViewModelProvider.NewInstanceFactory() {
override fun <T : ViewModel?> create(modelClass: Class<T>): T {
return VerifyBVNViewModel(repository) as T
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment