logStandardEventCommandToPigeon static method

FBLogStandardEventRequest logStandardEventCommandToPigeon(
  1. FBLogStandardEventCommand command
)

Implementation

static pigeon.FBLogStandardEventRequest logStandardEventCommandToPigeon(
    FBLogStandardEventCommand command) {
  return pigeon.FBLogStandardEventRequest(
    eventName: _eventToPigeonEnum(command.event),
    parameters: _eventParametersToPigeon(command.parameters),
  );
}