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