17 lines
400 B
Dart
17 lines
400 B
Dart
import 'package:discover_module/service.dart/service.dart';
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
class AwardProvider extends ChangeNotifier {
|
|
final apicall = Callapi();
|
|
List awalist = [];
|
|
|
|
List get awardlist => awalist;
|
|
|
|
awainfo(text) async {
|
|
print("Location_Text");
|
|
final email_result = await apicall.getawarddata(text);
|
|
awalist = email_result;
|
|
notifyListeners();
|
|
}
|
|
}
|