PageViewModel constructor

PageViewModel({
  1. required String category,
  2. String? subCategory,
  3. String? sessionId,
  4. String? userId,
  5. String? device,
  6. String? os,
  7. String? lang,
})

Implementation

PageViewModel({
  required this.category,
  this.subCategory,
  this.sessionId,
  this.userId,
  this.device,
  this.os,
  this.lang,
});