1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-03-31 12:31:35 +02:00
nc-photos/lib/mobile/android/self_signed_cert.dart

9 lines
228 B
Dart
Raw Normal View History

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");
}