setSymKey method
Implementation
@override
Future<String> setSymKey(
{required String symKey, String? overrideTopic}) async {
_isInitialized();
final topic = overrideTopic ?? await utils.hashKey(symKey);
await keychain.set(topic, symKey);
return topic;
}