PaymentLog constructor

PaymentLog(
  1. dynamic id,
  2. dynamic createdAt,
  3. dynamic updatedAt,
  4. dynamic objectType,
  5. dynamic mode,
  6. PaymentLogStatus? status,
  7. double? amount,
  8. String? details,
  9. String? sourceId,
  10. String? targetId,
  11. String? transactionId,
  12. String? userId,
  13. String? amountSubunits,
  14. String? amountCurrency,
  15. String? balanceSubunits,
  16. String? balanceCurrency,
  17. PaymentLogChargeType? chargeType,
  18. bool? isDebit,
  19. double? previousBalance,
  20. PaymentLogSourceType? sourceType,
  21. PaymentLogTargetType? targetType
)

Implementation

PaymentLog(
    id,
    createdAt,
    updatedAt,
    objectType,
    mode,
    this.status,
    this.amount,
    this.details,
    this.sourceId,
    this.targetId,
    this.transactionId,
    this.userId,
    this.amountSubunits,
    this.amountCurrency,
    this.balanceSubunits,
    this.balanceCurrency,
    this.chargeType,
    this.isDebit,
    this.previousBalance,
    this.sourceType,
    this.targetType)
    : super(id, createdAt, updatedAt, objectType, mode);