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? postBuildCommand,
  9. required bool cleanFlutter,
  10. required bool printstdout,
  11. required DateTime timestamp,
  12. required String version,
  13. required bool generateLog,
  14. required String buildVersion,
})

Implementation

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