connect method

Future<void> connect()

Connect to DAAP server.

Get DAAP content codes/server info/session info.

Implementation

Future<void> connect() async {
  serverInfo = await getServerInfo();
  contentCodes = await getContentCodes();
  sessionInfo = await login();
}