type property
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;