RulesDartprefer-single-quotesOn this pageprefer-single-quotesadded in: 1.2.0 styleWarns when strings are declared using double quotes instead of single quotesExampleBad:...const string = "Value"; // LINTGood:const string = 'Value';