addSize method

void addSize({
  1. required int width,
  2. required int height,
})

Implementation

void addSize({
  required int width,
  required int height,
}) {
  final size = "SIZE $width mm,$height mm$tscFix".codeUnits;
  _byte += size;
}