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