MatrixApi constructor

MatrixApi({
  1. Uri? homeserver,
  2. String? accessToken,
  3. Client? httpClient,
})

Implementation

MatrixApi({
  Uri? homeserver,
  String? accessToken,
  http.Client? httpClient,
}) : super(
          httpClient: httpClient,
          baseUri: homeserver,
          bearerToken: accessToken);