factory ApiResponse.error(String error, {int? statusCode}) { return ApiResponse( success: false, error: error, statusCode: statusCode, ); }