svgStringDecoderOutsideViewBoxBuilder property

PictureInfoDecoderBuilder<String> svgStringDecoderOutsideViewBoxBuilder
final

A PictureInfoDecoderBuilder for Strings that will not clip to the viewBox.

Implementation

static final PictureInfoDecoderBuilder<String>
    svgStringDecoderOutsideViewBoxBuilder = (SvgTheme theme) =>
        (String data, ColorFilter? colorFilter, String key) =>
            svg.svgPictureStringDecoder(
              data,
              true,
              colorFilter,
              key,
              theme: theme,
            );