mirror of
https://mirror.ghproxy.com/https://github.com/StarCitizenToolBox/app.git
synced 2024-12-23 20:33:42 +08:00
25 lines
821 B
Dart
25 lines
821 B
Dart
// This file is automatically generated, so please do not edit it.
|
|
// Generated by `flutter_rust_bridge`@ 2.0.0-dev.35.
|
|
|
|
// ignore_for_file: invalid_use_of_internal_member, unused_import, unnecessary_import
|
|
|
|
import '../frb_generated.dart';
|
|
import 'package:flutter_rust_bridge/flutter_rust_bridge_for_generated.dart';
|
|
|
|
Future<void> sendNotify(
|
|
{String? summary,
|
|
String? body,
|
|
String? appName,
|
|
String? appId,
|
|
dynamic hint}) =>
|
|
RustLib.instance.api.crateApiWin32ApiSendNotify(
|
|
summary: summary,
|
|
body: body,
|
|
appName: appName,
|
|
appId: appId,
|
|
hint: hint);
|
|
|
|
Future<bool> setForegroundWindow({required String windowName, dynamic hint}) =>
|
|
RustLib.instance.api.crateApiWin32ApiSetForegroundWindow(
|
|
windowName: windowName, hint: hint);
|