Files
Vocasia-LMS-Mobile-apps--TA…/lib/providers/email_provider.dart

20 lines
456 B
Dart

// import 'package:flutter/material.dart';
// class EmailProvider with ChangeNotifier {
// String? _currentEmail = '';
// String? _currentName = '';
// String? get currentEmail => _currentEmail;
// String? get currentName => _currentName;
// set currentEmail(String? email) {
// _currentEmail = email;
// notifyListeners();
// }
// set currentName(String? name) {
// _currentName = name;
// notifyListeners();
// }
// }