18 lines
420 B
Dart
18 lines
420 B
Dart
import 'dart:convert';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:managerapi/api.dart';
|
|
|
|
|
|
class ManagerAppContext with ChangeNotifier{
|
|
String email;
|
|
TokenDTO token;
|
|
dynamic clientAPI;
|
|
|
|
ManagerAppContext({this.email, this.token});
|
|
|
|
// Implement toString to make it easier to see information about
|
|
@override
|
|
String toString() {
|
|
return 'ManagerAppContext{email: $email, token: $token}';
|
|
}
|
|
} |