Microdiff is fast, zery dependency object and array comparison library. It is a Dart porting of microdiff.
- 🚀 Fast
- 💙 Easy to use, you need to simply call the
difffunction
import'package:microdiff/microdiff.dart';
voidmain() {
final diff =diff([1, 2, 3], [1, 2, 4]);
print(diff);
}Add this to your package's pubspec.yaml file:
dependencies:
microdiff: ^1.0.0Or you can install it from the command line:
dart pub add microdiff