searchShift method

Future<ShiftResponse> searchShift({
  1. required SearchShiftRequest request,
  2. String? authToken,
})

Returns a paginated list of Shift records for a business.

Implementation

Future<ShiftResponse> searchShift({
  required SearchShiftRequest request,
  String? authToken,
}) async {

  authToken ??= authenticationService.getCachedToken()?.accessToken;

  Map<String, String> headers = {
    "Authorization": "Bearer ${authToken ?? ""}",
    'Content-Type': 'application/json; charset=UTF-8',
    'Accept': 'application/json',

  };

  Uri endpoint = Uri.https(
      baseUrl, "/v2/labor/shifts/search");

  //print (endpoint.toString());

  var response = await
  http.post(endpoint, body: request.toJson(),  headers: headers);

  if (response.statusCode == 200) {
    print (jsonDecode(response.body));
    return ShiftResponse.fromJson(jsonDecode(response.body));
  }
  else {
    print (response.body);
    throw TeamMemberException(statusCode: response.statusCode, message: ShiftResponse.fromJson(jsonDecode(response.body)).errors?[0].detail?.toString());
  }
}