style: use Object instead of dynamic

This commit is contained in:
Aleksey Kulikov 2021-10-13 16:10:18 +03:00
parent 1972c6d1ab
commit beed516c89
13 changed files with 84 additions and 56 deletions

View file

@ -146,7 +146,7 @@ index e69de29..0000000
final a = repo.lookupBlob(
repo['e69de29bb2d1d6434b8b29ae775ad8c2e48c5391'],
);
final patch = Patch.createFrom(
final patch = Patch.create(
a: a,
b: 'Feature edit\n',
aPath: path,
@ -162,7 +162,7 @@ index e69de29..0000000
final a = repo.lookupBlob(
repo['e69de29bb2d1d6434b8b29ae775ad8c2e48c5391'],
);
final patch = Patch.createFrom(
final patch = Patch.create(
a: a,
b: null,
aPath: path,