getKeyStore method

Map<String, dynamic>? getKeyStore()

keystore getter

Implementation

Map<String, dynamic>? getKeyStore() {
  if (this.privateKey is String &&
      Account.isPrivateKey.hasMatch(this.privateKey!)) {
    return null;
  }
  return json.decode(this.privateKey!);
}