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