listStemBranchOfHour property

List<StemBranch> get listStemBranchOfHour

Generates a list of Stem-Branch combinations for each hour of this date. This list has 12 elements equivalent to 12 branches from Mouse to Pig.

Implementation

List<StemBranch> get listStemBranchOfHour {
  List<StemBranch> listHours =
      List.generate(12, (index) => StemBranch.hour(this, index));
  return listHours;
}