StructureMapRule constructor

const StructureMapRule({
  1. String? name,
  2. @JsonKey(name: '_name') Element? nameElement,
  3. required List<StructureMapSource> source,
  4. List<StructureMapTarget>? target,
  5. List<StructureMapRule>? rule,
  6. List<StructureMapDependent>? dependent,
  7. String? documentation,
  8. @JsonKey(name: '_documentation') Element? documentationElement,
})

Implementation

const factory StructureMapRule({
  String? name,
  @JsonKey(name: '_name') Element? nameElement,
  required List<StructureMapSource> source,
  List<StructureMapTarget>? target,
  List<StructureMapRule>? rule,
  List<StructureMapDependent>? dependent,
  String? documentation,
  @JsonKey(name: '_documentation') Element? documentationElement,
}) = _StructureMapRule;