Files
GSFV2/lib/callback/ICCommonCallback.dart

8 lines
133 B
Dart
Raw Permalink Normal View History

2024-04-10 12:51:20 +05:30
class ICCommonCallback {
final void Function(dynamic value) callBack;
ICCommonCallback({required this.callBack});
}