getSettings method

Future<Map<String, dynamic>?> getSettings({
  1. String? key,
})

Handler for get_settings.

Gets all settings from the config file.

Optional Parameters:

  • key: The name/key of a config section to return

Implementation

Future<Map<String, dynamic>?> getSettings({
    String? key,
}) async => _commandGetSettings(_client, key: key);