assertColor method Null safety
- [String? name]
Throws a SassScriptException
if this isn't a color.
If this came from a function argument, name
is the argument name
(without the $
). It's used for error reporting.
Implementation
SassColor assertColor([String? name]) =>
throw _exception("$this is not a color.", name);