mirror of
https://github.com/wanghongenpin/proxypin.git
synced 2026-04-24 22:19:52 +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);
|
|
}
|
|
}
|