enum_ property

List<Object?>? enum_
getter/setter pair

Possible values for an enumeration.

This works in conjunction with type to represent types with a fixed set of legal values

The values for Object must be JSON objects. It can consist of num, String, bool and null as well as Map and List values.

Implementation

core.List<core.Object?>? enum_;