mirror of
https://bitbucket.org/FransoletThomas/tablet-app.git
synced 2025-12-06 08:31:19 +00:00
17 lines
458 B
Dart
17 lines
458 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:managerapi/api.dart';
|
|
import 'package:tablet_app/client.dart';
|
|
|
|
|
|
class TabletAppContext with ChangeNotifier{
|
|
Client clientAPI;
|
|
ConfigurationDTO configuration;
|
|
String language;
|
|
TabletAppContext();
|
|
|
|
// Implement toString to make it easier to see information about
|
|
@override
|
|
String toString() {
|
|
return 'TabletAppContext{selectedConfiguration: $configuration, language: $language}';
|
|
}
|
|
} |