of static method

MetaDateDueConfig of({
  1. required MSchemaRef? schemaRef,
  2. required JsonPath? path,
  3. String? factId,
})
override

Implementation

static MetaDateDueConfig of({
  required MSchemaRef? schemaRef,
  required JsonPath? path,
  String? factId
  }) {
  final self = MetaDateDueConfig(<String, dynamic>{}, mtype: MetaDateDueConfigRef, update: true);
  if (schemaRef != null) self.schemaRef = schemaRef;
  if (path != null) self.path = path;
  if (factId != null) self.factId = factId;
  return self;
}