signIn method
Try to signIn into superadmin
Implementation
Future<dynamic> signIn(String username, String password) {
return this._service.post(
'${this._service.baseUrl}/${this._service.requestRole}/${this._service.path}',
{
'username': username,
'password': password,
'realm': _realm,
},
);
}