If you want a class to extend another class and implement an interface in Kotlin, use this syntax:
class ChildClass(parameters) : ParentClass(parameters), InterfaceName
// First, use : to extend the parent class.
// Then, use , to implement one or more interfaces.
If you want a class to extend another class and implement an interface in Kotlin, use this syntax: