InspectNotificationsSession constructor

InspectNotificationsSession(
  1. List<Map<String, dynamic>> _notifications,
  2. IOSink _outputStream,
  3. Future<String> _executeCommand(
    1. String
    )
)

Implementation

InspectNotificationsSession(this._notifications, this._outputStream, this._executeCommand) {
  _showNotificationList();
  _outputStream.writeln(cyan.wrap("\nEntering interactive mode. Type a number to select a notification, 'l' to relist, or 'q' to quit."));
}