PublisherArguments constructor

PublisherArguments(
  1. String publisher,
  2. Variables variables, {
  3. required String filePath,
  4. required String binaryType,
})

Creates a new publisher arguments instance.

Parameters:

  • publisher - The publisher platform identifier
  • variables - Variable processor for argument substitution
  • filePath - Path to the application binary or directory
  • binaryType - Type of binary (apk, aab, ipa)

Initializes the base publisher configuration with the specified parameters and inherits job argument functionality.

Implementation

PublisherArguments(
  this.publisher,
  super.variables, {
  required this.filePath,
  required this.binaryType,
});