status method
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');
}