rawItemsMap property

Map<String, String> get rawItemsMap

Implementation

Map<String, String> get rawItemsMap {
  final fontSizes = options.rawItemsMap ??
      context.quillSimpleToolbarConfigurations?.fontSizesValues ??
      {
        context.loc.small: 'small',
        context.loc.large: 'large',
        context.loc.huge: 'huge',
        context.loc.clear: '0'
      };
  return fontSizes;
}