extendedAscii constant

String const extendedAscii

A string containing an extended set of ASCII characters.

This includes the defaultAscii characters plus additional characters from the Latin-1 Supplement block (codes 160-255). Generated with: "${String.fromCharCodes(Iterable.generate(127-32, (r) => r + 32))}${String.fromCharCodes(Iterable.generate(256-160, (r) => r + 160))}"

Implementation

static const String extendedAscii =
    defaultAscii +
    r""" ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ""";