hasGlyph method

bool hasGlyph(
  1. String glyphName
)

Checks if a glifo existe na fonte

Implementation

bool hasGlyph(String glyphName) {
  return _glyphnames?.containsKey(glyphName) ?? false;
}