getCurrentCheckStatus method
Implementation
Future<(bool,String)> getCurrentCheckStatus(int id) async {
final response = await EmployeesStub.getCheckInOutStatusByEmployee(CheckStatusRequest()..icEmployeeId=id);
return (response.success, response.status);
}