// 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(); // } // }