svgByteDecoderOutsideViewBoxBuilder property

PictureInfoDecoderBuilder<Uint8List> svgByteDecoderOutsideViewBoxBuilder
final

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

Implementation

static final PictureInfoDecoderBuilder<Uint8List>
    svgByteDecoderOutsideViewBoxBuilder = (SvgTheme theme) =>
        (Uint8List bytes, ColorFilter? colorFilter, String key) =>
            svg.svgPictureDecoder(
              bytes,
              true,
              colorFilter,
              key,
              theme: theme,
            );