UserLogin constructor

const UserLogin({
  1. required String username,
  2. required String password,
  3. String? scope,
})

Implementation

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