marginTop method
Margin at the top of the barcode
Implementation
@override
double marginTop(
  bool drawText,
  double width,
  double height,
  double fontHeight,
  double textPadding,
) {
  if (!drawText || !drawIsbn) {
    return super.marginTop(drawText, width, height, fontHeight, textPadding);
  }
  return fontHeight + textPadding;
}