PhotoCard constructor

PhotoCard({
  1. String title = "",
  2. String description = "",
  3. String imagePath = "",
  4. bool isLocalImage = true,
  5. required String cardId,
})

Implementation

PhotoCard({
  this.title = "",
  this.description = "",
  this.imagePath = "",
  this.isLocalImage = true,
  required this.cardId,
});