SvgImageKey constructor

const SvgImageKey({
  1. required String path,
  2. required int pixelWidth,
  3. required int pixelHeight,
  4. required double scale,
  5. required SvgSource source,
  6. Color? color,
})

Implementation

const SvgImageKey({
  required this.path,
  required this.pixelWidth,
  required this.pixelHeight,
  required this.scale,
  required this.source,
  this.color,
});