barcode property

String barcode

Creates barcode of the Bill from bill ID and payment ID

Implementation

String get barcode {
  // ignore: unnecessary_brace_in_string_interps
  return '${_billId}000${_paymentId}';
}