I have a Dart Web UI class like this:
class PersonComponent extends WebComponent {
bool loggedIn;
String name;
}
and I'm using it like this:
<x-person loggedIn="{{loggedIn}}"></x-person>
However, when I run the app, I get a NoSuchMethodError, because it can't find loggedin=
How do I set a camel case attribute name in a Web UI class?