murdock
abstract class ScanPresenter : MvpPresenter<ScanView>() { abstract fun applyFilter(imageFilterType: ImageFilterType) } class ScanPresenterImpl @Inject constructor() : ScanPresenter() { override fun applyFilter(imageFilterType: ImageFilterType) { } }
Dominaezzz
louiscad
A modern programming language that makes developers happier.