DefaultSvgTheme constructor

const DefaultSvgTheme({
  1. Key? key,
  2. required Widget child,
  3. required SvgTheme theme,
})

Creates a default SVG theme for the given subtree using the provided theme.

Implementation

const DefaultSvgTheme({
  Key? key,
  required Widget child,
  required this.theme,
}) : super(key: key, child: child);