Image constructor Null safety

Image(
  1. {String? thumb,
  2. String? small,
  3. String? large}
)

Implementation

Image({
  this.thumb,
  this.small,
  this.large,
});