memory static method

Widget memory(
  1. Uint8List bytes, {
  2. Alignment alignment = Alignment.center,
  3. bool allowDrawingOutsideViewBox = false,
  4. Clip clipBehavior = Clip.hardEdge,
  5. ColorFilter? colorFilter,
  6. bool excludeFromSemantics = false,
  7. BoxFit fit = BoxFit.contain,
  8. double? height,
  9. Key? key,
  10. bool matchTextDirection = false,
  11. WidgetBuilder? placeholderBuilder,
  12. String? semanticsLabel,
  13. SvgTheme theme = const SvgTheme(),
  14. double? width,
})

Implementation

static Widget memory(
  Uint8List bytes, {
  Alignment alignment = Alignment.center,
  bool allowDrawingOutsideViewBox = false,
  Clip clipBehavior = Clip.hardEdge,
  ColorFilter? colorFilter,
  bool excludeFromSemantics = false,
  BoxFit fit = BoxFit.contain,
  double? height,
  Key? key,
  bool matchTextDirection = false,
  WidgetBuilder? placeholderBuilder,
  String? semanticsLabel,
  SvgTheme theme = const SvgTheme(),
  double? width,
}) =>
    svgFromMemory(
      bytes,
      alignment: alignment,
      allowDrawingOutsideViewBox: allowDrawingOutsideViewBox,
      clipBehavior: clipBehavior,
      colorFilter: colorFilter,
      excludeFromSemantics: excludeFromSemantics,
      fit: fit,
      height: height,
      key: key,
      matchTextDirection: matchTextDirection,
      placeholderBuilder: placeholderBuilder,
      semanticsLabel: semanticsLabel,
      theme: theme,
      width: width,
    );