setDisableActionsOnLoad static method

Future<bool> setDisableActionsOnLoad(
  1. bool shouldDisableActionsOnLoad
)

Implementation

static Future<bool> setDisableActionsOnLoad(
    bool shouldDisableActionsOnLoad) async {
  bool isDisableActionsOnLoad = await _channel.invokeMethod(
      'setDisableActionsOnLoad',
      {"shouldDisableActionsOnLoad": shouldDisableActionsOnLoad});
  return isDisableActionsOnLoad;
}