sanitizedVersion property

String get sanitizedVersion

Returns a version that removes every character that is not a letters and converts all letters to lowercase

Implementation

String get sanitizedVersion =>
    replaceAll(RegExp("[^A-Za-z]+"), "").toLowerCase();