ContentPageModel constructor Null safety

ContentPageModel(
  1. {int? id,
  2. String? name,
  3. String? title,
  4. String? content,
  5. String? pageDescription,
  6. String? imageUrl,
  7. bool? showImage}
)

Implementation

ContentPageModel({
  this.id,
  this.name,
  this.title,
  this.content,
  this.pageDescription,
  this.imageUrl,
  this.showImage,
});