setSideBarWidth method

  1. @override
Future<void> setSideBarWidth(
  1. double width
)
override

Sets the ApplicationSettings.sideBarWidth value.

Implementation

@override
Future<void> setSideBarWidth(double width) async {
  Log.debug('setSideBarWidth($width)', '$runtimeType');
  await _set(settings: (e) => e..sideBarWidth = width);
}