getCurrentCheckStatus method

Future<(bool, String)> getCurrentCheckStatus(
  1. int id
)

Implementation

Future<(bool,String)> getCurrentCheckStatus(int id) async {

  final response = await EmployeesStub.getCheckInOutStatusByEmployee(CheckStatusRequest()..icEmployeeId=id);
  return (response.success, response.status);

}