parseMask method

DrawableStyleable? parseMask()

Lookup the mask if the attribute is present.

Implementation

DrawableStyleable? parseMask() {
  final String? rawMaskAttribute = getAttribute(attributes, 'mask');
  if (rawMaskAttribute != '') {
    return _definitions.getDrawable(rawMaskAttribute!);
  }

  return null;
}