openChecklists static method

Future<void> openChecklists({
  1. required bool showBackButton,
})

openChecklists

Opens the checklist overview.

Available Platforms

Web, Android, iOS

Implementation

static Future<void> openChecklists({required bool showBackButton}) async {
  if (!kIsWeb && !io.Platform.isAndroid && !io.Platform.isIOS) {
    debugPrint(
      'openChecklists is not available for current operating system',
    );
    return;
  }

  await _channel
      .invokeMethod('openChecklists', {'showBackButton': showBackButton});
}