mirror of
https://github.com/WuKongIM/WuKongIMFlutterSDK
synced 2025-05-29 15:12:20 +00:00
8 lines
160 B
Dart
8 lines
160 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class PopupItem {
|
|
final String text;
|
|
final GestureTapCallback? onTap;
|
|
PopupItem({this.text = '', this.onTap});
|
|
}
|