WebInfo constructor

WebInfo({
  1. String? title,
  2. String? icon,
  3. String? description,
  4. String? image,
  5. String? redirectUrl,
})

Implementation

WebInfo({
  this.title,
  this.icon,
  this.description,
  this.image,
  this.redirectUrl,
});