`TextStyle` only has a `const` constructor, so I can't create one using a runtime value like: ```dart TextStyle( color: Theme.of(context).primaryColor, // Error as this is not a const Color fontWeight: FontWeight.w500, fontSize: 20 ); ```
TextStyleonly has aconstconstructor, so I can't create one using a runtime value like: