Match constructor

Match({
  1. required MapOperation operation,
  2. required List<Accessor> source,
  3. required List<Accessor> target,
})

Implementation

Match({required this.operation, required this.source, required this.target}) {
  paths = [source, target];
}