Expression.ofEnum constructor

Expression.ofEnum(
  1. Type type,
  2. String value
)

Implementation

Expression.ofEnum(Type type, String value)
    : nodes = [
        type,
        Code('.'),
        IdentifierStartingWithLowerCase(value),
      ];