Commit 1ad945f8 authored by Chinmay Garde's avatar Chinmay Garde

Make the constant member value final

parent a223491d
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
part of cassowary; part of cassowary;
class ConstantMember extends _EquationMember { class ConstantMember extends _EquationMember {
double value = 0.0; final double value;
bool get isConstant => true; bool get isConstant => true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment