fipy/lib/providers/player.dart

8 lines
131 B
Dart
Raw Permalink Normal View History

import 'package:flutter/material.dart';
class PlayerProvider with ChangeNotifier {
void reload() {
notifyListeners();
}
}