execute method

  1. @override
Future<void> execute()
override

Implementation

@override
Future<void> execute() async {
  await Isolate.run(
    () async {
      await thisCommit.compareCommitDiff(
        other: otherCommit,
        onDiffCalculated: (d) => d.fullPrint(),
      );
    },
  );
}