assetSvg method

Widget assetSvg({
  1. String module = 'common',
  2. double? width,
  3. double? height,
  4. 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);
}