dart-data-plugin icon indicating copy to clipboard operation
dart-data-plugin copied to clipboard

Named Argument Constructor should not include variable inside method

Open anggaaryas opened this issue 1 year ago • 0 comments

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

anggaaryas avatar Jun 20 '23 06:06 anggaaryas