AnyImageRepresentable constructor

const AnyImageRepresentable({
  1. required String name,
  2. double? width,
  3. double? height,
  4. Color? colour,
  5. IconData? iconData,
})

Implementation

const AnyImageRepresentable({
  required this.name,
  this.width,
  this.height,
  this.colour,
  this.iconData,
});