saveProfile method
Saves the current profile.
Implementation
@override
Future<void> saveProfile(FocusProfile profile) async {
final box = await _openBox;
await box.put(_profileKey, profile.toJson());
}
Saves the current profile.
@override
Future<void> saveProfile(FocusProfile profile) async {
final box = await _openBox;
await box.put(_profileKey, profile.toJson());
}