PasswordInfo constructor

PasswordInfo({
  1. required String name,
  2. required PasswordCategory category,
  3. String? notes,
  4. required bool isPlatformManaged,
  5. required bool isUserSet,
})

Implementation

PasswordInfo({
  required this.name,
  required this.category,
  this.notes,
  required this.isPlatformManaged,
  required this.isUserSet,
});