horoscope method

  1. @override
IFunctionalHoroscpoe horoscope({
  1. required String date,
  2. int? timeIndex,
})
override

获取运限数据 阳历日期,默认位调用时的日期 时辰索引,默认位自动读取当前时间的时辰 return 运限数据

Implementation

@override
IFunctionalHoroscpoe horoscope({required String date, int? timeIndex}) {
  // TODO: implement horoscope
  return _getHoroscopeBySolarDate(this, date, timeIndex);
}