relatica/lib/services/setting_service.dart

13 wiersze
271 B
Dart

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