finalSinglelinePixel function

Pixel finalSinglelinePixel(
  1. String singleLine, {
  2. PixelCombineMode combineMode = PixelCombineMode.LR,
})

Implementation

Pixel finalSinglelinePixel(String singleLine, {PixelCombineMode combineMode = PixelCombineMode.LR}){
  return combinePixels(characterPixels(singleLine), combineMode: combineMode);
}