有效字字串

字串可以是單行或多行。單行字串使用匹配的單引號或雙引號編寫,多行字串使用三引號編寫。以下是所有有效的 Dart 字串:

'Single quotes';
"Double quotes";
'Double quotes in "single" quotes';
"Single quotes in 'double' quotes";

'''A
multiline
string''';

"""
Another
multiline
string""";