how can i implement this in kotlin ''' public cla...
# getting-started
c
how can i implement this in kotlin ''' public class GitHubActionCreator extends RxActionCreator implements Actions { /** * If you want to give more things to the constructor like API or Preferences or any other * parameter you can buy make sure to call super(dispatcher, manager) */ public GitHubActionCreator(Dispatcher dispatcher, SubscriptionManager manager) { super(dispatcher, manager); }'''
p
I guess you want this?
Copy code
class GitHubActionCreator(
    dispatcher: Dispatcher,
    manager: SubscriptionManager
) : RxActionCreator(dispatcher, manager), Actions
More information here https://kotlinlang.org/docs/reference/classes.html#inheritance
c
@Pavlo Liapota Yes I did that I was more confused with super call