Greeting constructor

const Greeting({
  1. Key? key,
  2. String? iconPath,
  3. String? message,
  4. Color? color,
})

Implementation

const Greeting({
  super.key,
  this.iconPath,
  this.message,
  this.color
});