mirror of
https://github.com/haorendashu/nowser.git
synced 2025-12-17 09:54:19 +01:00
21 lines
325 B
Dart
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;
|
|
}
|
|
}
|