queryDoNotDisturbTime property

Future<PeriodTimeResultBean> get queryDoNotDisturbTime

Implementation

Future<PeriodTimeResultBean> get queryDoNotDisturbTime async {
  String jsonStr =
      await mConnMethodChannel.invokeMethod('queryDoNotDisturbTime');
  PeriodTimeResultBean doNotDisturbTime =
      periodTimeResultBeanFromJson(jsonStr);
  return doNotDisturbTime;
}