除算結果(double) をintにキャストする。
int m = (list.length/n).toInt();
は
The operator x ~/ y is more efficient than (x / y).toInt().
で
x ~/ y
で代替可能
#dart