logPurchaseCommandToProto static method

FBLogPurchaseMessageRequest logPurchaseCommandToProto(
  1. FBLogPurchaseCommand command
)

Implementation

static FBLogPurchaseMessageRequest logPurchaseCommandToProto(
    FBLogPurchaseCommand command) {
  return FBLogPurchaseMessageRequest(
    amount: command.amount,
    currency: command.currency,
    eventParameter: command.eventParameter,
  );
}