AuthUsersService constructor
AuthUsersService({
- required String baseUrl,
- required String businessId,
- bool useBaseSession = false,
- @visibleForTesting LittleFishHttpClient? httpClient,
Implementation
AuthUsersService({
required String baseUrl,
required String businessId,
this.useBaseSession = false,
@visibleForTesting LittleFishHttpClient? httpClient,
}) {
this.baseUrl = baseUrl;
this.businessId = businessId;
if (httpClient != null) _client = httpClient;
}