String? charAt(int c) { if (this == null) return null; if (this!.length > c) return this![c]; return null; }