LocalImageConfig constructor

LocalImageConfig({
  1. required String imagePath,
  2. double? imageHeight,
  3. double? imageWidth,
  4. double? padRight,
  5. double? padLeft,
  6. ColorModel? svgColor,
})

Implementation

LocalImageConfig({
  required this.imagePath,
  this.imageHeight,
  this.imageWidth,
  this.padRight,
  this.padLeft,
  this.svgColor,
});