CheckLinkResponse constructor

CheckLinkResponse({
  1. required String url,
  2. String? filename,
  3. int? size,
  4. required String status,
})

Implementation

CheckLinkResponse({
  required this.url,
  this.filename,
  this.size,
  required this.status,
});