mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 09:16:19 +01:00
8 lines
228 B
Dart
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");
|
|
}
|