DataRefModel.optional constructor

const DataRefModel.optional({
  1. String? id,
  2. List<String>? collection,
})

Construcs a new instance of DataRefModel, forcing all parameters to be optional.

Implementation

const DataRefModel.optional({
  this.id,
  this.collection,
});