ReceiptTextLeftRight constructor

ReceiptTextLeftRight(
  1. String leftText,
  2. String rightText, {
  3. ReceiptTextStyle leftTextStyle = const ReceiptTextStyle(type: ReceiptTextStyleType.normal, useSpan: true),
  4. ReceiptTextStyle rightTextStyle = const ReceiptTextStyle(type: ReceiptTextStyleType.normal, useSpan: true),
})

Implementation

ReceiptTextLeftRight(
  this.leftText,
  this.rightText, {
  this.leftTextStyle = const ReceiptTextStyle(
    type: ReceiptTextStyleType.normal,
    useSpan: true,
  ),
  this.rightTextStyle = const ReceiptTextStyle(
    type: ReceiptTextStyleType.normal,
    useSpan: true,
  ),
});