mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-12-18 05:27:53 +08:00
4200734593
Signed-off-by: fufesou <shuanglongchen@yeah.net>
18 lines
329 B
Dart
18 lines
329 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
final Map<String, PluginWidget> pluginWidgets = {};
|
|
|
|
class PluginWidget {
|
|
final String id;
|
|
final String name;
|
|
final String location;
|
|
final Widget widget;
|
|
|
|
PluginWidget({
|
|
required this.id,
|
|
required this.name,
|
|
required this.location,
|
|
required this.widget,
|
|
});
|
|
}
|