KohlerImage constructor

const KohlerImage({
  1. Key? key,
  2. double? width,
  3. double? height = 18.0,
})

Implementation

const KohlerImage({
  super.key,
  this.width,
  this.height = 18.0,
});