Error in dart code final Color _color; TextSection (this._color);
Solution 1:
Your class name is Textsection
where section
is lowercase but your constructor is named TextSection
with an uppercase Section
.
Try renaming your class to TextSection
so it matches your constructor name.