checkForIri method
Whether this DrawableStyleable belongs in the DrawableDefinitions or not.
Implementation
bool checkForIri(DrawableStyleable? drawable) {
final String iri = buildUrlIri();
if (iri != emptyUrlIri) {
_definitions.addDrawable(iri, drawable!);
return true;
}
return false;
}