DataRefModel.c3 constructor

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

Implementation

factory DataRefModel.c3({
  String? id,
  List<String>? collection,
}) {
  return DataRefModel(
    id: id,
    collection: collection,
  );
}