mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-16 01:56:19 +00:00
8 lines
146 B
Dart
8 lines
146 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'smart_state.dart';
|
|
|
|
class SmartProvider extends ChangeNotifier {
|
|
final state = SmartState();
|
|
}
|