openCalendarWithEvent method

Future<bool> openCalendarWithEvent(
  1. CalendarEvent event
)

Opens the native calendar app with pre-filled event details.

Returns true if the calendar was successfully opened, false otherwise.

Implementation

Future<bool> openCalendarWithEvent(CalendarEvent event) {
  throw UnimplementedError(
      'openCalendarWithEvent() has not been implemented.');
}