Reads DID from a file.
didPath: a path to DID file. Returns the DID.
didPath
Future<String> readDid(String didPath) async { return await File(didPath).readAsString(); }