i'm using VS Code for flutter development and one issue i have is code formatting (styling) which is not as customizable as it is in android-studio. my problem is that each time vs code saves dart files it will break my lines very short like below:
var tuple =
settings.arguments as Tuple3<String, int, Field>;
obviously this is what i want :
var tuple = settings.arguments as Tuple3<String, int, Field>;
how can i solve this problem?