BitlyModel constructor

BitlyModel({
  1. String? link,
  2. String? id,
  3. String? longUrl,
  4. String? title,
  5. bool? archived,
  6. String? createdAt,
  7. String? createdBy,
  8. String? clientId,
  9. List<String>? customBitlinks,
  10. List<String>? tags,
  11. List<String>? launchpadIds,
  12. List<Deeplinks>? deeplinks,
})

Implementation

BitlyModel({
  this.link,
  this.id,
  this.longUrl,
  this.title,
  this.archived,
  this.createdAt,
  this.createdBy,
  this.clientId,
  this.customBitlinks,
  this.tags,
  this.launchpadIds,
  this.deeplinks,
});