#' ColorList
#'
#' @export
#' @format \code{\link{R6Class}} object, super class \code{\link{SciObject}}.
#' @field name of type String.
ColorList <- R6::R6Class("ColorList", inherit = SciObject, public = list(name = NULL,
initialize = function(json = NULL) {
super$initialize(json = json)
}, init = function() {
super$init()
self$name = ""
}, initJson = function(json) {
super$initJson(json)
self$name = json$name
}, toTson = function() {
m = super$toTson()
m$kind = tson.scalar("ColorList")
m$name = tson.scalar(self$name)
return(m)
}))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.