SessionScreenResult constructor

const SessionScreenResult({
  1. required bool ok,
  2. required String message,
  3. required Uint8List screen,
  4. required bool altScreen,
})

Creates a peek result.

Implementation

const SessionScreenResult({
  required this.ok,
  required this.message,
  required this.screen,
  required this.altScreen,
});