UserPass constructor

const UserPass({
  1. required String username,
  2. required String password,
})

Implementation

const UserPass({
  required this.username,
  required this.password,
});