compileAndSign abstract method

Future<CompileAndSignResult?> compileAndSign(
  1. Iterable<String> scriptNames,
  2. Uint8List privateKey, {
  3. bool failOnErrors = false,
  4. OptimizationLevel optimizationLevel = OptimizationLevel.medium,
  5. DebugLevel debugLevel = DebugLevel.medium,
})

Retrieves the bytecode for listed modules and signature.

Implementation

Future<CompileAndSignResult?> compileAndSign(
  Iterable<String> scriptNames,
  Uint8List privateKey, {
  bool failOnErrors = false,
  OptimizationLevel optimizationLevel = OptimizationLevel.medium,
  DebugLevel debugLevel = DebugLevel.medium,
});