mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-07-06 14:10:41 +00:00
12 lines
347 B
Dart
12 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) {}
|
||
|
}
|