generateKeyPair method

Future<WireGuardKeyPair> generateKeyPair()

Implementation

Future<WireGuardKeyPair> generateKeyPair() {
  return Future<WireGuardKeyPair>.error(
    UnsupportedError('Key generation is not supported on this platform.'),
  );
}