colors method
Implementation
AFColorPairing colors(AFThemeID id) {
final val = value(id);
var result;
if(val is AFColorPairing) {
result = val;
} else {
_throwUnsupportedType(id, val);
}
return result;
}
AFColorPairing colors(AFThemeID id) {
final val = value(id);
var result;
if(val is AFColorPairing) {
result = val;
} else {
_throwUnsupportedType(id, val);
}
return result;
}