ListingModel constructor

ListingModel(
  1. {int? id,
  2. String? name,
  3. int? status,
  4. String? image,
  5. bool isSelected = false}
)

Implementation

ListingModel(
    {this.id, this.name, this.status, this.image, this.isSelected = false});