requestPermissions method

Future<void> requestPermissions()

Request the app to fetch the permissions to access the calendar

Implementation

Future<void> requestPermissions() async {
  try {
    await _channel.invokeMethod('requestPermissions');
  } catch (e) {
    print(e);
  }

  return;
}