IntegrationCardProps constructor

const IntegrationCardProps({
  1. required String name,
  2. String? description,
  3. String? logoUrl,
  4. String? href,
  5. void onTap()?,
  6. String? category,
  7. bool featured = false,
})

Implementation

const IntegrationCardProps({
  required this.name,
  this.description,
  this.logoUrl,
  this.logo,
  this.href,
  this.onTap,
  this.category,
  this.featured = false,
});