Value constructor Null safety

Value(
  1. {int? id,
  2. String? iDs,
  3. String? name,
  4. int? featureId}
)

Implementation

Value({
  this.id,
  this.iDs,
  this.name,
  this.featureId,
});