Feature constructor Null safety

Feature(
  1. {String? name,
  2. String? value,
  3. String? imageUrl}
)

Implementation

Feature({
  this.name,
  this.value,
  this.imageUrl,
});