OGImage constructor Null safety

OGImage(
  1. {String? url,
  2. String? secureUrl,
  3. String? type,
  4. String? alt,
  5. int width = 0,
  6. int height = 0}
)

Implementation

OGImage({
  this.url,
  this.secureUrl,
  this.type,
  this.alt,
  this.width = 0,
  this.height = 0,
});