logPurchaseCommandToPigeon static method

FBLogPurchaseRequest logPurchaseCommandToPigeon(
  1. FBLogPurchaseCommand command
)

Implementation

static pigeon.FBLogPurchaseRequest logPurchaseCommandToPigeon(
    FBLogPurchaseCommand command) {
  return pigeon.FBLogPurchaseRequest(
    amount: command.amount,
    currency: command.currency,
    eventParameter: command.eventParameter,
  );
}