String lowerCaseEnglishLetter({ int? count, }) => String.fromCharCodes( List.generate( count ?? 1, (_) => 97 + nextInt(26), ), );