23 lines
631 B
Dart
23 lines
631 B
Dart
import 'package:discover_module/contacts_module/service.dart/service.dart';
|
|
import 'package:discover_module/contacts_module/storage_hive/edu_data/crud_edu.dart';
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
class EducationProvider extends ChangeNotifier {
|
|
final apicall = Callapi();
|
|
List edulist = [];
|
|
|
|
List get educationlist => edulist;
|
|
|
|
eduinfo(text) async {
|
|
print("Location_Text");
|
|
final email_result = await apicall.getedulistdata(text);
|
|
edulist = email_result;
|
|
notifyListeners();
|
|
}
|
|
|
|
storeEdu(row) async {
|
|
final emailresult = await apicall.getedulistdata(row);
|
|
await addEdu(emailresult);
|
|
}
|
|
}
|