functional_widget icon indicating copy to clipboard operation
functional_widget copied to clipboard

Local varible _....... starts with a underscore

Open unoriginalxx opened this issue 1 year ago • 0 comments

Linting warning on generated consumer widgets.

class App extends ConsumerWidget { const App({Key? key}) : super(key: key);

@override Widget build( BuildContext _context, WidgetRef _ref, ) => app(_ref); }

Should have underscore notation removed. (Inherently private scoped)

unoriginalxx avatar Mar 17 '23 02:03 unoriginalxx