AlgoScrypt constructor

AlgoScrypt({
  1. required String type,
  2. required int costCpu,
  3. required int costMemory,
  4. required int costParallel,
  5. required int length,
})

Implementation

AlgoScrypt({
    required this.type,
    required this.costCpu,
    required this.costMemory,
    required this.costParallel,
    required this.length,
});