forget method

Future<void> forget(
  1. String mac, {
  2. String? siteId,
})

Forget a mac.

Throw ApiException if not successful

Implementation

Future<void> forget(String mac, {String? siteId}) async {
  await _commandWithMac(Endpoints.staMgr, Commands.unblock, mac,
      siteId: siteId);
}