ResourceDetail constructor
ResourceDetail(
- ResourceType type, {
- Author? author,
- double height = 300,
Implementation
ResourceDetail(this.type, {Author? author, this.height = 300}) {
this.author = author ?? mockAuthor;
}