canSetSessionPresets method

Future<List<String>> canSetSessionPresets(
  1. List<String> presets
)

Returns a subset of preset values that indicates which presets can be used by the session.

Implementation

Future<List<String>> canSetSessionPresets(List<String> presets) async {
  final List<Object?> returnedPresets =
      await _channel.$canSetSessionPresets(this, presets) as List<Object?>;
  return returnedPresets.cast<String>();
}