SwipeCardData constructor

SwipeCardData({
  1. required String imageAsset,
  2. required String name,
  3. required int age,
  4. required String location,
  5. required double distance,
  6. bool isActive = false,
  7. String chipText = 'Active Now',
})

Implementation

SwipeCardData({
  required this.imageAsset,
  required this.name,
  required this.age,
  required this.location,
  required this.distance,
  this.isActive = false,
  this.chipText = 'Active Now',
});