licenseKey method

Future<AppKey?> licenseKey()

Implementation

Future<AppKey?> licenseKey() async {
  final data = await invoke('Document/Liscense');
  return AppKey.fromJson(data);
}