VastuCompass constructor

const VastuCompass({
  1. Key? key,
  2. required VastuCategoryDataModel aCategoryDataModel,
  3. bool isLoggedIn = false,
  4. bool isPaid = false,
  5. String forUnPaidUserRemediesMessage = "Please pay to see all",
  6. String forNotLoggedUserEffectMessage = "Please login to see all content",
  7. required void onAction(
    1. String actionType
    ),
})

Implementation

const VastuCompass({
  super.key,
  required this.aCategoryDataModel,
  this.isLoggedIn = false,
  this.isPaid = false,
  this.forUnPaidUserRemediesMessage = "Please pay to see all",
  this.forNotLoggedUserEffectMessage = "Please login to see all content",
  required this.onAction,
});