refactor(llc): make Filter.empty constructor const.

Signed-off-by: xsahil03x <[email protected]>
This commit is contained in:
Sahil Kumar
2021-09-15 16:01:00 +05:30
committed by xsahil03x
parent d65481533a
commit 59aad47789
2 changed files with 7 additions and 4 deletions
@@ -139,7 +139,7 @@ void main() {
});
test('empty', () {
final filter = Filter.empty();
const filter = Filter.empty();
expect(filter.value, {});
});