NodeChange constructor

const NodeChange({
  1. required int index,
  2. required Map<String, dynamic> oldJson,
  3. required Map<String, dynamic> newJson,
})

Implementation

const NodeChange({
  required this.index,
  required this.oldJson,
  required this.newJson,
});