SavedLogin constructor

const SavedLogin({
  1. required String hubUrl,
  2. required String principal,
  3. required String method,
  4. bool insecure = false,
  5. bool isDefault = false,
})

Implementation

const SavedLogin({
  required this.hubUrl,
  required this.principal,
  required this.method,
  this.insecure = false,
  this.isDefault = false,
});