diff-match-patch icon indicating copy to clipboard operation
diff-match-patch copied to clipboard

Port of google-diff-match-patch library to Dart.

Results 3 diff-match-patch issues
Sort by recently updated
recently updated
newest added

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...