LuaDoc constructor

LuaDoc({
  1. String? category,
  2. String? html,
  3. String keyValueHtml(
    1. Object value
    )?,
  4. bool exclude(
    1. Object value
    )?,
})

Custom configuration associated with some LuaObject.

Implementation

LuaDoc({this.category, String? html, this.keyValueHtml, this.exclude})
  : noHtml = false,
    _html = html;