WalkThroughModelClass constructor

WalkThroughModelClass({
  1. String? title,
  2. String? subTitle,
  3. String? image,
  4. Color? color,
  5. Map<String, dynamic>? data,
})

Implementation

WalkThroughModelClass({
  this.title,
  this.subTitle,
  this.image,
  this.color,
  this.data,
});