mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-07-06 06:00:43 +00:00
11 lines
347 B
Dart
11 lines
347 B
Dart
import 'package:m3_lightmeter_resources/m3_lightmeter_resources.dart';
|
|
|
|
class IAPStorageService {
|
|
const IAPStorageService(Object _);
|
|
|
|
String get selectedEquipmentProfileId => '';
|
|
set selectedEquipmentProfileId(String id) {}
|
|
|
|
List<EquipmentProfile> get equipmentProfiles => [];
|
|
set equipmentProfiles(List<EquipmentProfile> profiles) {}
|
|
}
|