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
diff
function
import 'package:microdiff/microdiff.dart';
void main() {
final diff = diff([1, 2, 3], [1, 2, 4]);
print(diff);
}
Add this to your package's pubspec.yaml
file:
dependencies:
microdiff: ^1.0.0
Or you can install it from the command line:
dart pub add microdiff