Pages constructor

Pages({
  1. String? description,
  2. String? title,
  3. Widget? imagePath,
  4. Key? key,
})

Implementation

Pages({this.description, this.title, this.imagePath, Key? key})
    : super(key: key);