parseMiterLimit function

double? parseMiterLimit(
  1. List<XmlAttribute> el
)

Parses AVD strokeMiterLimit to a double.

Implementation

double? parseMiterLimit(List<XmlAttribute> el) {
  return parseDouble(
      getAttribute(el, 'strokeMiterLimit', def: '4', namespace: androidNS));
}