uncommonChars top-level property

Map<String, Converter> uncommonChars
final

Implementation

final Map<String, Converter> uncommonChars = {
  'A': (context) {
    switch (context.location) {
      case Location.MEDIAL:
        return [Menksoft.MEDI_A_FVS1];
      default:
        return converters['a']!.call(context);
    }
  },
  'O': (context) {
    switch (context.location) {
      case Location.INITIAL:
        return [Menksoft.MEDI_O];
      case Location.MEDIAL:
        return [Menksoft.MEDI_O_FVS1];
      default:
        return converters['o']!.call(context);
    }
  },
  'U': (context) {
    switch (context.location) {
      case Location.MEDIAL:
        return [
          if ((context.isPreviousRoundAnytime || context.isPreviousHG))
            Menksoft.MEDI_UE_FVS1_BP
          else
            Menksoft.MEDI_UE_FVS1,
          if (!context.isPreviousRoundAnytime && !context.isPreviousHG)
            Menksoft.MEDI_UE_FVS2,
        ];
      default:
        return converters['u']!.call(context);
    }
  }
};