BPConfig constructor

BPConfig({
  1. PlatformConfig? android,
  2. PlatformConfig? ios,
  3. PlatformConfig? linux,
  4. PlatformConfig? macos,
  5. PlatformConfig? web,
  6. PlatformConfig? windows,
  7. String? xcodeDerivedKey,
  8. String? preBuildCommand,
  9. String? postBuildCommand,
  10. required bool cleanFlutter,
  11. required bool printstdout,
  12. required DateTime timestamp,
  13. required String version,
  14. required bool generateLog,
  15. required String buildVersion,
  16. required List<String> cmdArgs,
})

Implementation

BPConfig({
  this.android,
  this.ios,
  this.linux,
  this.macos,
  this.web,
  this.windows,
  this.xcodeDerivedKey,
  this.preBuildCommand,
  this.postBuildCommand,
  required this.cleanFlutter,
  required this.printstdout,
  required this.timestamp,
  required this.version,
  required this.generateLog,
  required this.buildVersion,
  required this.cmdArgs,
});