Widget

data class Widget(id: Int, widgetType: WidgetType, content: String, style: WidgetStyle?, actionList: List<Action>)

Author

Umang Chamaria Date: 29/04/20

Constructors

Widget
Link copied to clipboard
fun Widget(id: Int, widgetType: WidgetType, content: String, style: WidgetStyle?, actionList: List<Action>)

Functions

equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int

Properties

actionList
Link copied to clipboard
val actionList: List<Action>
content
Link copied to clipboard
val content: String
id
Link copied to clipboard
val id: Int
style
Link copied to clipboard
val style: WidgetStyle?
widgetType
Link copied to clipboard
val widgetType: WidgetType