lastSelectedModel property

String? lastSelectedModel

Get the last selected model from persisted preferences.

Implementation

String? get lastSelectedModel {
  String? modelName = _preferences.get('last_selected_model');
  return modelName;
}