Size constructor Null safety

Size(
  1. {int? id,
  2. String? name,
  3. bool? isOutOfStock}
)

Implementation

Size({
  this.id,
  this.name,
  this.isOutOfStock,
});