TransactionDetails constructor
Creates a new instance of TransactionDetails.
orderId is the unique identifier for the order.
grossAmount is the total amount of the transaction.
Implementation
TransactionDetails({
required this.orderId,
required this.grossAmount,
});