CardViewModel constructor

CardViewModel({
  1. required String backdropAssetPath,
  2. required String address,
  3. required String capitol,
  4. required String description,
})

Provides data for the card view model

Implementation

CardViewModel({
    required this.backdropAssetPath,
    required this.address,
    required this.capitol,
    required this.description,
  });