status method

Future<AmiResponse?> status()

Retrieves system status with all channels.

This is a multi-part response. Use readAllEventsUntil to collect all status entries.

Example:

await status();
final statusEvents = await readAllEventsUntil('Status', 'StatusComplete');

Implementation

Future<AmiResponse?> status() {
  return sendAction('Status');
}