mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 12:42:34 +00:00
7 lines
157 B
Dart
7 lines
157 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
abstract class LunaModuleState extends ChangeNotifier {
|
|
/// Reset the state back to the default
|
|
void reset();
|
|
}
|