sendPillReminder method

Future<void> sendPillReminder(
  1. PillReminderBean info
)

Implementation

Future<void> sendPillReminder(PillReminderBean info) async {
  String jsonStr = pillReminderBeanToJson(info);
  await mConnMethodChannel.invokeMethod(
      "sendPillReminder", <String, String>{"pillReminderInfo": jsonStr});
}