assetSvg method
Widget
assetSvg({
- String module = 'common',
- double? width,
- double? height,
- ColorFilter? colorFilter,
参数module
为图片路径,
return widget
Implementation
Widget assetSvg({String module = 'common', double? width, double? height, ColorFilter? colorFilter}) {
return _assetSvg(module, width: width, height: height, colorFilter: colorFilter);
}