ListingDataModel constructor Null safety

ListingDataModel(
  1. {int? length,
  2. List<ListingItem>? items}
)

Implementation

ListingDataModel({
  this.length,
  this.items,
});