2023-07-06 17:18:41 +03:30
|
|
|
import 'package:flutter_local_notifications/flutter_local_notifications.dart';
|
|
|
|
|
|
|
|
|
|
const mainChannel = AndroidNotificationChannel(
|
|
|
|
|
"com.hiddify.hiddify",
|
2023-08-21 11:30:01 +00:00
|
|
|
"Hiddify Next",
|
2023-07-06 17:18:41 +03:30
|
|
|
importance: Importance.high,
|
|
|
|
|
enableVibration: false,
|
|
|
|
|
playSound: false,
|
|
|
|
|
);
|