SignTool constructor

const SignTool({
  1. required String name,
  2. required String command,
  3. required String params,
  4. required int retryCount,
  5. required int retryDelay,
})

Create a SignTool instance with the given properties.

Implementation

const SignTool({
  required this.name,
  required this.command,
  required this.params,
  required this.retryCount,
  required this.retryDelay,
});