AppHeader constructor

AppHeader({
  1. required double amount,
  2. required String currency,
  3. required String orderNo,
  4. bool showAmountCard = true,
  5. String paymentId = '',
  6. String transactionId = '',
  7. String paymentStatus = '',
  8. String statusMessage = '',
  9. bool status = false,
})

Implementation

AppHeader(
    {required this.amount,
    required this.currency,
    required this.orderNo,
    this.showAmountCard = true,
    this.paymentId = '',
    this.transactionId = '',
    this.paymentStatus = '',
    this.statusMessage = '',
    this.status = false});