ResourceCard constructor

const ResourceCard({
  1. Key? key,
  2. String? resourceName,
  3. String? creator,
  4. String? mimeType,
  5. Widget? mimeTypeIcon,
  6. List<String?>? tags,
  7. String? posterImage,
  8. String? resourceDescription,
  9. required VoidCallback onTapCallBack,
})

Implementation

const ResourceCard({
  super.key,
  this.resourceName,
  this.creator,
  this.creatorLogo,
  this.mimeType,
  this.mimeTypeIcon,
  this.tags,
  this.posterImage,
  this.resourceDescription,
  required this.onTapCallBack,
});