open static method

Future<void> open()

open

Opens the feedback widget

Available Platforms

Web, Android, iOS

Implementation

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

  await _channel.invokeMethod('openWidget');
}