| 1234567891011121314151617181920 |
- // ignore_for_file: camel_case_types
- import 'package:flutter/material.dart';
- class mainURLChangeNotifier extends ChangeNotifier {
- String _mainURL="";
- String get mainURL => _mainURL;
-
- set(BuildContext context,String url) async {
- _mainURL = url;
- notifyListeners();
- }
- get(BuildContext context) async {
- notifyListeners();
- }
- remove(BuildContext context) async {
- notifyListeners();
- }
- }
|