Returns the first character as a Some, or None if the string is empty.
Option<String> get firstOrNone => isEmpty ? const None() : Some(this[0]);