relatica/lib/services/setting_service.dart

13 lines
271 B
Dart
Raw Normal View History

import 'package:flutter/foundation.dart';
class SettingsService extends ChangeNotifier {
var _lowBandwidthMode = true;
bool get lowBandwidthMode => _lowBandwidthMode;
set lowBandwidthMode(bool value) {
_lowBandwidthMode = value;
notifyListeners();
}
}