fixed static method

GenerateSecretWords fixed({
  1. required int totalCount,
})

Implementation

static GenerateSecretWords fixed({required int totalCount}) {
  return GenerateSecretWords(
    max_count: totalCount,
    min_count: totalCount,
  );
}