levels property
Implementation
static final List<LevelConfig> levels = [
LevelConfig(
rows: 9, cols: 7, initialFilledRows: 4, maxAddRows: 3,
allowedNumbers: [1,2,3,4,5,6,7,8,9], seconds: 120,difficulty:1
),
LevelConfig(
rows: 10, cols: 7, initialFilledRows: 4, maxAddRows: 5,
allowedNumbers: [0,1,2,3,4,5,6,7,8,9], seconds: 120,difficulty:2
),
LevelConfig(
rows: 11, cols: 9, initialFilledRows: 4, maxAddRows: 4,
allowedNumbers: [0,1,2,3,4,5,6,7,8,9], seconds: 120,difficulty:3
),
];