ConnectionModel constructor

ConnectionModel({
  1. String username = 'lg',
  2. String password = '',
  3. String ip = '',
  4. int port = 22,
  5. bool isConnected = false,
  6. int screenAmount = 3,
})

Implementation

ConnectionModel({
  this.username = 'lg',
  this.password = '',
  this.ip = '',
  this.port = 22,
  this.isConnected = false,
  this.screenAmount = 3,
});