diff-match-patch
diff-match-patch copied to clipboard
Port of google-diff-match-patch library to Dart.
Migration to dart null-safety compatibility
The following code throws an exception: ``` String text = "schoener wohnen in altona? stadtentwicklung im 20. und 21. jahrhundert"; String query = "auf motivsuche im kraftwerk bille"; DiffMatchPatch().match(text, query,...
### Problem I'm using this package in a project that we're keeping compatible with the ddc. The `==` implementation caused a compilation error. ### Solution Update the type signature to...