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