Change.of constructor

Change.of({
  1. required String operation,
  2. required String path,
  3. String? from,
})

Implementation

Change.of({required String operation, required String path, String? from})
    : super.of(
        operation: operation,
        path: path,
        from: from,
      );