Files
nowser/lib/component/webview/web_info.dart
2024-08-23 11:53:14 +08:00

21 lines
325 B
Dart

import 'package:flutter_inappwebview/flutter_inappwebview.dart';
class WebInfo {
String id;
String url;
WebInfo(this.id, this.url);
InAppWebViewController? controller;
String? title;
WebInfo clone() {
var wi = WebInfo(id, url);
wi.controller = controller;
wi.title = title;
return wi;
}
}