parseSVGResult function

GumboOutput parseSVGResult(
  1. String code
)

Implementation

GumboOutput parseSVGResult(String code) {
  Pointer<Utf8> nativeCode = code.toNativeUtf8();
  final ptr = _parseSVGResult(nativeCode, nativeCode.length);
  return GumboOutput(ptr, nativeCode);
}