1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-03-31 04:21:36 +02:00
nc-photos/lib/mobile/android/self_signed_cert.dart
2021-05-09 19:28:06 +08:00

8 lines
228 B
Dart

import 'package:flutter/services.dart';
class SelfSignedCert {
static Future<void> reload() => _channel.invokeMethod("reload");
static const _channel =
const MethodChannel("com.nkming.nc_photos/self-signed-cert");
}