startMonitor method

Future<bool> startMonitor()

Implementation

Future<bool> startMonitor() async {
  var privateKey = await getPrivateKey(currentAtSign!);
  await atClientInstance.startMonitor(privateKey, _notificationCallback);
  print('Monitor started');
  return true;
}