type property

String? type
final

Override the Lua type string (e.g. "string[]", "integer").

When unset, the generator maps common Dart types: String -> "string" int -> "integer" double / num -> "number" bool -> "boolean" List -> "array" Map -> "table"

Implementation

final String? type;