dart-data-plugin
dart-data-plugin copied to clipboard
Named Argument Constructor should not include variable inside method
Can you filter the variable that only in class scope? not in all variable
class Foo {
final string x;
void bar(){
var i = 0;
//some code
}
void baz(){
var y = "blabla";
//some code
}
}
the pop up generator dialog should list only x
, not all variable