signIn method

Future signIn(
  1. String username,
  2. String password
)

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,
    },
  );
}