setShowFloatingReportButton static method

Future<void> setShowFloatingReportButton(
  1. bool enabled
)

Sets if floating report button is visible.

Implementation

static Future<void> setShowFloatingReportButton(bool enabled) async {
  await _channel.invokeMethod('setShowFloatingReportButton', {
    'enabled': enabled,
  });
}