gitDiff method

Future<String> gitDiff({
  1. String? rev,
  2. bool staged = false,
  3. String? path,
})

Implementation

Future<String> gitDiff({String? rev, bool staged = false, String? path}) =>
    adapter.gitDiff(rev: rev, staged: staged, path: path);