LoginType constructor

LoginType({
  1. required String client_id,
  2. required String client_secret,
  3. required String grant_type,
  4. required String password,
  5. required String username,
})

Implementation

LoginType({required this.client_id, required this.client_secret, required this.grant_type, required this.password, required this.username});