getDaYunBy method

List<DaYun> getDaYunBy(
  1. int n
)

获取大运 n 轮数

Implementation

List<DaYun> getDaYunBy(int n) {
  List<DaYun> l = <DaYun>[];
  for (int i = 0; i < n; i++) {
    l.add(DaYun(this, i));
  }
  return l;
}