mirror of
https://github.com/wanghongenpin/proxypin.git
synced 2026-05-14 15:48:03 +08:00
9 lines
216 B
Dart
9 lines
216 B
Dart
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter_toastr/flutter_toastr.dart';
|
|
|
|
class Toast {
|
|
static void show(String message, BuildContext context) {
|
|
FlutterToastr.show(message, context);
|
|
}
|
|
}
|