Added a bulletPoint to the CommonString class

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
This commit is contained in:
2024-10-01 12:22:24 +02:00
parent b1a01dc6c1
commit 8377828f14
2 changed files with 8 additions and 0 deletions
+4
View File
@@ -4,6 +4,10 @@ abstract class CommonString {
/// An em dash (`—`) is commonly used in typography to set off parenthetical
/// phrases or provide emphasis in a sentence.
static const String emDash = "";
/// A bullet point (`•`) is a small, round symbol used in typography to indicate a new
/// item in a list or to separate items in a series.
static const String bulletPoint = "";
}
extension Nullability on String? {