MacosSignConfig constructor

const MacosSignConfig({
  1. required String inputPath,
  2. required String entitlementsPath,
  3. bool skipNotarize = false,
  4. bool isAppBundle = false,
  5. Map<String, String>? environment,
})

Implementation

const MacosSignConfig({
  required this.inputPath,
  required this.entitlementsPath,
  this.skipNotarize = false,
  this.isAppBundle = false,
  this.environment,
});