UrlList constructor

UrlList({
  1. String? createTime,
  2. String? description,
  3. String? name,
  4. String? updateTime,
  5. List<String>? values,
})

Implementation

UrlList({
  this.createTime,
  this.description,
  this.name,
  this.updateTime,
  this.values,
});