Roman Volkov
Jul 28, 2021

--

> static variables can only be const.

Static variables may be final as well:

```

class Foo {

static final bar = 'MyVar';

}

```

--

--

Roman Volkov
Roman Volkov

Responses (1)