sendMenstrualCycle method

Future<void> sendMenstrualCycle(
  1. MenstrualCycleBean info
)

Implementation

Future<void> sendMenstrualCycle(MenstrualCycleBean info) async {
  String jsonStr = menstrualCycleBeanToJson(info);
  await mConnMethodChannel.invokeMethod(
      "sendMenstrualCycle", <String, String>{"menstrualCycleBean": jsonStr});
}