ResourceDetail constructor

ResourceDetail(
  1. ResourceType type, {
  2. Author? author,
  3. double height = 300,
})

Implementation

ResourceDetail(this.type, {Author? author, this.height = 300}) {
  this.author = author ?? mockAuthor;
}